Transfer
Double column transfer choice box.
Basic Usage
<prism-transfer
[dataSource]="basicData()"
[(targetKeys)]="basicKeys"
/>Searchable
<prism-transfer
[dataSource]="searchData()"
[(targetKeys)]="searchKeys"
[showSearch]="true"
/>PrismTransfer API
| Name | Type | Default | Description |
|---|---|---|---|
dataSource | input<TransferItem[]> | [] | Data options for the transfer component. |
titles | input<[string, string]> | ['Source', 'Target'] | Titles for the left and right lists. |
showSearch | input<boolean> | false | Whether to show the search inputs. |
disabled | model<boolean> | false | Whether the component is disabled. |
targetKeys | model<string[]> | [] | The keys of items in the right list. |