-
Notifications
You must be signed in to change notification settings - Fork 133
Platform: Input List Item Component V1.0 Technical Design
sKudum edited this page Mar 12, 2020
·
5 revisions
The input list item contains a label and any sort of input UI element.
<fdp-list
[id]="list Id"
[headerTitle]="header title"
[footerText]="footer text"
--------
>
<fdp-action-list-item *ngFor="let item of listItems"
[id]="{{item.id}}"
[label]="{{item.label}}"
(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
Is used along with this component. In ng-content area user can insert custom data.