-
Notifications
You must be signed in to change notification settings - Fork 133
Platform: Filter Bar Component V1.0 Technical Design
sKudum edited this page Mar 18, 2020
·
2 revisions
The filter bar filters item lists and tables according to various filter criteria. You can use it for both simple and complex lists, regardless of their size. To handle complex lists with multiple filters, the filter bar provides predefined, customizable filter sets (variants).
<fdp-filter-bar
[id]="bar Id"
[title]="bar title"
[show/hide advanced]="true|false"
[showSearch]="true|false"
[showClear]="true|false"
[showGo]="true|false"
[showRestore]="true|false">
<ng-content></ng-content>
</fdp-filter-bar>
id of the bar it is optional.
Title of the filter bar
shows(expand) and hides(collapse) the advanced filter options
show or hide the search option.
show or hide the clear button.
show or hide the GO button.
show or hide the Restore button.
Template:
N/A
N/A
Are used along with this component.
Sushma: in ng-content is place holder for filter items.