Title | Added | Status | Last reviewed |
---|---|---|---|
Form cloud component |
v3.2.0 |
Active |
2019-04-17 |
Shows a form for a task.
Shows Cancel, Save, Complete, Claim and Release buttons. Cancel, Save and Complete buttons are always present. Claim and Release buttons are present according to user's permissions and task's condition (Claimed, Completed etc).
The following example shows the buttons that are visible when the task's condition is released and the user has the admin permissions
Save and Complete buttons get disabled when at least one of the form's inputs are invalid.
<adf-cloud-task-form
[appName]="appName"
[taskId]="taskId">
</adf-cloud-task-form>
Name | Type | Default value | Description |
---|---|---|---|
appName | string |
"" | App id to fetch corresponding form and values. |
readOnly | boolean |
false | Toggle readonly state of the task. |
showCancelButton | boolean |
true | Toggle rendering of the Cancel button. |
showCompleteButton | boolean |
true | Toggle rendering of the Complete button. |
showRefreshButton | boolean |
false | Toggle rendering of the Refresh button. |
showTitle | boolean |
true | Toggle rendering of the form title. |
showValidationIcon | boolean |
true | Toggle rendering of the Validation icon. |
taskId | string |
Task id to fetch corresponding form and values. | |
displayModeConfigurations | FormCloudDisplayModeConfiguration[] |
The available display configurations for the form |
Name | Type | Description |
---|---|---|
cancelClick | EventEmitter<string> |
Emitted when the cancel button is clicked. |
error | EventEmitter<any> |
Emitted when any error occurs. |
executeOutcome | EventEmitter<FormOutcomeEvent> |
Emitted when any outcome is executed. Default behaviour can be prevented via event.preventDefault() . |
formCompleted | EventEmitter<FormModel> |
Emitted when the form is submitted with the Complete outcome. |
formContentClicked | EventEmitter<ContentLinkModel> |
Emitted when form content is clicked. |
formSaved | EventEmitter<FormModel> |
Emitted when the form is saved. |
onTaskLoaded | EventEmitter<TaskDetailsCloudModel> |
Emitted when a task is loaded. |
taskClaimed | EventEmitter<string> |
Emitted when the task is claimed. |
taskCompleted | EventEmitter<string> |
Emitted when the task is completed. |
taskUnclaimed | EventEmitter<string> |
Emitted when the task is unclaimed. |
displayModeOn | EventEmitter<FormCloudDisplayModeConfiguration> |
Emitted when a display mode configuration is turned on. |
displayModeOff | EventEmitter<FormCloudDisplayModeConfiguration> |
Emitted when a display mode configuration is turned off. |
Provide a displayModeConfiguration
array object containing the fullscreen configuration. You can use the configuration provided in the DisplayModeService
as a static member DisplayModeService.IMPLEMENTED_DISPLAY_MODE_CONFIGURATIONS
, or configure your own if you want to customise the options for the fullscreen display mode.
MyView.component.html
<button (click)="adfCloudTaskForm.switchToDisplayMode('fullScreen')">Full screen</button>
<adf-cloud-task-form #adfCloudTaskForm
[appName]="appName"
[taskId]="selectedTask?.id"
[showTitle]="false"
[showRefreshButton]="false"
[showValidationIcon]="false"
[displayModeConfigurations]="displayConfigurations">
</adf-cloud-task-form>
MyView.component.ts
import { DisplayModeService } from '@alfresco/adf-process-services-cloud';
export class MyView {
get displayConfigurations() {
return DisplayModeService.IMPLEMENTED_DISPLAY_MODE_CONFIGURATIONS;
}
}
When the displayModeConfigurations
contains the configuration for the fullscreen display, in the header of the form, a button to switch to fullscreen is displayed. Keep in mind that the header of the form is visible only if any of the parameters showTitle
, showRefreshButton
or showValidationIcon
is true
, but it is also possible to switch to the fullscreen display using a button that you can place wherever you want as shown in the previous example.