alfresco-ng2-components/docs/process-services/components/process-instance-header.component.md
Maurizio Vitale cd7e21a23d [ADF-4858] Make sure process-services works with ng commands (#5067)
* Process-services:
Making sure you can run
ng build process-services
ng test process-services

* Fix the path of the styles

* move the file in the right place
2019-09-20 09:47:17 +01:00

1.5 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
Process Instance Details Header component v2.0.0 Active 2019-01-14

Process Instance Details Header component

Sub-component of the process details component, which renders some general information about the selected process.

adf-process-instance-header

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.