-
Notifications
You must be signed in to change notification settings - Fork 137
Platform: Action List Item Component V1.0 Technical Design
sKudum edited this page Mar 12, 2020
·
5 revisions
The action list item control lets the user trigger actions directly from a list. It is used mainly within dialog boxes and popovers.
<fdp-list
[id]="list Id"
[headerTitle]="header title"
[footerText]="footer text"
--------
>
<fdp-action-list-item *ngFor="let item of listItems"
[id]="{{item.id}}"
[text]="{{item.text}}"
(click)="onitemPress">
<ng-content></ng-content>
</fdp-action-list-item>
</fdp-list>
id of the action list item it is optional.
text of the of item
Fires when item is clicked.
N/A
N/A
- List signature
Are used along with this component.