--- Added: v2.0.0 Status: Active Last reviewed: 2018-03-13 --- # Task Details component Shows the details of the task ID passed in as input. ## Basic Usage ```html ``` ### Properties | Name | Type | Default value | Description | | ---- | ---- | ------------- | ----------- | | debugMode | `boolean` | `false` | Toggles debug mode. | | taskId | `string` | | (**required**) The id of the task whose details we are asking for. | | showNextTask | `boolean` | `true` | Automatically renders the next task when the current one is completed. | | showHeader | `boolean` | `true` | Toggles task details Header component. | | showHeaderContent | `boolean` | `true` | Toggles collapsed/expanded state of the Header component. | | showInvolvePeople | `boolean` | `true` | Toggles `Involve People` feature for the Header component. | | showComments | `boolean` | `true` | Toggles `Comments` feature for the Header component. | | showChecklist | `boolean` | `true` | Toggles `Checklist` feature for the Header component. | | showFormTitle | `boolean` | `true` | Toggles rendering of the form title. | | showFormCompleteButton | `boolean` | `true` | Toggles rendering of the `Complete` outcome button. | | showFormSaveButton | `boolean` | `true` | Toggles rendering of the `Save` outcome button. | | readOnlyForm | `boolean` | `false` | Toggles read-only state of the form. All form widgets render as read-only if enabled. | | showFormRefreshButton | `boolean` | `true` | Toggles rendering of the `Refresh` button. | | fieldValidators | `any[]` | `[]` | Field validators for use with the form. | ### Events | Name | Type | Description | | ---- | ---- | ----------- | | formSaved | `EventEmitter` | Emitted when the form is submitted with the `Save` or custom outcomes. | | formCompleted | `EventEmitter` | Emitted when the form is submitted with the `Complete` outcome. | | formContentClicked | `EventEmitter` | Emitted when the form field content is clicked. | | formLoaded | `EventEmitter` | Emitted when the form is loaded or reloaded. | | taskCreated | `EventEmitter` | Emitted when a checklist task is created. | | taskDeleted | `EventEmitter` | Emitted when a checklist task is deleted. | | error | `EventEmitter` | Emitted when an error occurs. | | executeOutcome | `EventEmitter` | Emitted when any outcome is executed. Default behaviour can be prevented via `event.preventDefault()`. | | assignTask | `EventEmitter` | Emitted when a task is assigned. | | claimedTask | `EventEmitter` | Emitted when a task is claimed. | | unClaimedTask | `EventEmitter` | Emitted when a task is unclaimed. | ## Details ### Custom 'empty Task Details' template By default the Task Details component shows a simple "No Tasks" message when there are no details. You can change this by adding the a custom HTML template as in the following example: ```html

Sorry, no tasks here

``` Note that you can use any HTML content in the template, including other Angular components.