mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-4067] Process Service Cloud change applicationName input (#4299)
* [ADF-4047] Process Service Cloud change applicationName input * [ADF-4067] Change applicationName properties and route param name
This commit is contained in:
committed by
Eugenio Romano
parent
3a93e07366
commit
877c57b356
@@ -28,7 +28,7 @@ Renders a list containing all the tasks matched by the parameters specified.
|
||||
|
||||
```html
|
||||
<adf-cloud-task-list
|
||||
[applicationName]="'APPLICATION-NAME'" >
|
||||
[appName]="'APPLICATION-NAME'" >
|
||||
</adf-cloud-task-list>
|
||||
```
|
||||
|
||||
@@ -51,7 +51,7 @@ when the task list is empty:
|
||||
|
||||
| Name | Type | Default value | Description |
|
||||
| ---- | ---- | ------------- | ----------- |
|
||||
| applicationName | `string` | "" | The name of the application. |
|
||||
| appName | `string` | "" | The name of the application. |
|
||||
| assignee | `string` | "" | The assignee of the process. Possible values are: "assignee" (the current user is the assignee), "candidate" (the current user is a task candidate", "group_x" (the task is assigned to a group where the current user is a member, no value (the current user is involved). |
|
||||
| createdDate | `string` | "" | Filter the tasks. Display only tasks created on the supplied date. |
|
||||
| dueDate | `string` | "" | Filter the tasks. Display only tasks with dueDate equal to the supplied date. |
|
||||
@@ -153,7 +153,7 @@ You can use an HTML-based schema and an `app.config.json` custom schema declarat
|
||||
|
||||
```html
|
||||
<adf-cloud-task-list
|
||||
[applicationName]="'ApplicationName'">
|
||||
[appName]="'appName'">
|
||||
<data-columns>
|
||||
<data-column key="assignee" title="Assignee" class="full-width name-column">
|
||||
<ng-template let-entry="$implicit">
|
||||
@@ -187,7 +187,7 @@ The Tasklist also supports pagination as shown in the example below:
|
||||
|
||||
```html
|
||||
<adf-cloud-task-list #taskCloud
|
||||
[applicationName]="'APPLICATION-NAME'">
|
||||
[appName]="'APPLICATION-NAME'">
|
||||
</adf-cloud-task-list>
|
||||
<adf-pagination [target]="taskCloud"
|
||||
(changePageSize)="onChangePageSize($event)">
|
||||
|
Reference in New Issue
Block a user