mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-3323] Fixed URL path to Typescript source files * [ADF-3323] Fixed and checked broken links caused by previous bug
1.3 KiB
1.3 KiB
Added, Status, Last reviewed
Added | Status | Last reviewed |
---|---|---|
v2.0.0 | Active | 2018-06-08 |
Process Instance Details Header component
Sub-component of the process details component, which renders some general information about the selected process.
Basic Usage
<adf-process-instance-header
processInstance="localProcessDetails">
</adf-process-instance-details>
Class members
Properties
Name | Type | Default value | Description |
---|---|---|---|
processInstance | ProcessInstance |
(required) Full details of the process instance to display information about. |
Details
Choosing which properties are displayed
By default all the properties are displayed: status, ended, category, businessKey, assignee, created,id, description.
You can customize which properties are displayed using a setting in app.config.json
.
The configuration looks like the following sample:
"adf-process-instance-header": {
"presets": {
"properties" : [ "status", "ended", "created", "id"]
}
}
Only the items in the properties
array will be displayed.