-
Notifications
You must be signed in to change notification settings - Fork 133
Platform: Table toolbar Component V1.0 Technical Design
kavya-b edited this page May 20, 2020
·
3 revisions
The table toolbar always appears above the table and has a transparent background. The control is used for key actions that impact the entire table.
<fdp-table-toolbar [id]="id of the element'"
[clickable]="true|false'"
[width]="12rem"
[disabled]="true|false"
[type]="auto|info|solid|transparent"
(click)="onpress()">
toolbar title</fdp-table-toolbar>
Defines toolbar text is selectable for the user. once value of the text property becomes active and acts like a link.
on text presence, active property will be set to true.
Width of the toolbar
toolbar is disabled or not
design type of toolbar
export type Tooltype="auto|info|solid|transparent";
Event fired on click of toolBar.
Link to general support for i18n: Supporting internationalization in ngx/platform
Special Usecase: No
-
fdp-table-toolbar
can be supported as:
<fdp-table-toolbar
i18n="@@tableTitle"
[id]="id of the element'"
[clickable]="true|false'"
(click)="onpress()">
toolbar title
</fdp-table-toolbar>
Redesign Required: No