-
Notifications
You must be signed in to change notification settings - Fork 130
Platform: Filter Bar Component V1.0 Technical Design
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.
Link to general support for i18n: Supporting internationalization in ngx/platform
Special Usecase: No
-
fdp-filter-bar
'stitle
attribute can be supported with string binding:
<fdp-filter-bar
[id]="bar Id"
i18n-title="@@titleBar"
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>
Redesign Required: No
The filter items in the ng-content
will support i18n as per the components specified in it.
Sushma: in ng-content is place holder for filter items.