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.4 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
Checklist Component v2.0.0 Active 2018-11-19

Checklist Component

Shows the checklist task functionality.

Basic Usage

<adf-checklist 
    [readOnly]="false" 
    [taskId]="taskId" 
    [assignee]="taskAssignee.id">
</adf-checklist>

Class members

Properties

Name Type Default value Description
assignee string (required) The assignee id that the subtasks are assigned to.
readOnly boolean false Toggle readonly state of the form. All form widgets will render as readonly if enabled.
taskId string (required) The id of the parent task to which subtasks are attached.

Events

Name Type Description
checklistTaskCreated EventEmitter<TaskDetailsModel> Emitted when a new checklist task is created.
checklistTaskDeleted EventEmitter<string> Emitted when a checklist task is deleted.
error EventEmitter<any> Emitted when an error occurs.