[ADF-4429] Process List Cloud - Remove the pagination parameters. (#4682)

This commit is contained in:
Francesco Corti
2019-05-02 11:13:28 +02:00
committed by Eugenio Romano
parent 3afd2b24fc
commit 6eec485891

View File

@@ -172,9 +172,7 @@ The Process Instance List also supports pagination:
```html ```html
<adf-cloud-process-list <adf-cloud-process-list
[appId]="'1'" [appName]="'myApp'"
[page]="page"
[size]="size"
#processList> #processList>
</adf-cloud-process-list> </adf-cloud-process-list>
<adf-pagination <adf-pagination
@@ -185,6 +183,16 @@ The Process Instance List also supports pagination:
</adf-pagination> </adf-pagination>
``` ```
The configuration related to the pagination can be changed from the `app.config.json`, as described in the example below:
```json
"pagination": {
"size": 20,
"supportedPageSizes": [ 5, 10, 15, 20 ]
},
```
## See also ## See also
- [Data column component](../../core/components/data-column.component.md) - [Data column component](../../core/components/data-column.component.md)