diff --git a/docs/.DS_Store b/docs/.DS_Store index b81aab2c33..ec8a947a92 100644 Binary files a/docs/.DS_Store and b/docs/.DS_Store differ diff --git a/docs/process-services-cloud/components/edit-process-filter-cloud.component.md b/docs/process-services-cloud/components/edit-process-filter-cloud.component.md index 792026088c..e85c68f24f 100644 --- a/docs/process-services-cloud/components/edit-process-filter-cloud.component.md +++ b/docs/process-services-cloud/components/edit-process-filter-cloud.component.md @@ -22,6 +22,7 @@ Shows/edits process filter details. - [Filter properties](#filter-properties) - [Sort properties](#sort-properties) - [Action properties](#action-properties) +- [Saving custom filters](#saving-custom-filters) - [See also](#see-also) ## Basic Usage @@ -200,6 +201,13 @@ export class SomeComponent implements OnInit { With this configuration, only the two actions will be shown. +## Saving custom filters +Users can save a filter if they make any changes to it in an application using the **Save** icon. How it is saved is dictated by the Activiti version used: + +* An Activiti 7 community version stores saved filters in the local browser storage. This restricts a user's custom filters to that single session. + +* An Activiti Enterprise version uses the preference service to store saved filters. This allows for user's custom filters to be available between sessions and between devices. + ## See also - [Edit task filter cloud component](edit-task-filter-cloud.component.md) diff --git a/docs/process-services-cloud/components/edit-task-filter-cloud.component.md b/docs/process-services-cloud/components/edit-task-filter-cloud.component.md index 027efe9269..6f5ea2b1d2 100644 --- a/docs/process-services-cloud/components/edit-task-filter-cloud.component.md +++ b/docs/process-services-cloud/components/edit-task-filter-cloud.component.md @@ -22,6 +22,7 @@ Edits task filter details. - [Filter properties](#filter-properties) - [Sort properties](#sort-properties) - [Action properties](#action-properties) +- [Saving custom filters](#saving-custom-filters) - [See also](#see-also) ## Basic Usage @@ -200,6 +201,13 @@ export class SomeComponent implements OnInit { With this configuration, only the two actions will be shown. +## Saving custom filters +Users can save a filter if they make any changes to it in an application using the **Save** icon. How it is saved is dictated by the Activiti version used: + +* An Activiti 7 community version stores saved filters in the local browser storage. This restricts a user's custom filters to that single session. + +* An Activiti Enterprise version uses the preference service to store saved filters. This allows for user's custom filters to be available between sessions and between devices. + ## See also - [Edit process filter cloud component](edit-process-filter-cloud.component.md)