项目作者: k1dlima

项目描述 :
Multi-column Picklist using Angular
高级语言: TypeScript
项目地址: git://github.com/k1dlima/multi-select-picklist.git
创建时间: 2020-04-15T10:59:09Z
项目社区:https://github.com/k1dlima/multi-select-picklist

开源协议:MIT License

下载


PicklistDemo

This project was generated with Angular CLI version 8.3.23.

PicklistComponent is a multi-select picklist which also displays multiple columns and enables the user to sort them, it supports some basic selection functionality.

UI

Picklist

Dependencies

Used Angular Material for Icons.

Parameters

@Optional: headers

Default is null. It must be an array of 2 strings.
Displays titles for left and right tables. If null, it will not show.

  1. [ 'Available', 'Selected' ]

@Required: columnNames

Must be an array of objects with keys - key and value.
Order of columns will follow the order of the Array.

  1. [
  2. { "key": "name", "value": "Name" },
  3. { "key": "comp", "value": "Company" }
  4. ]

@Required: data

Must be an array of objects with the following keys:

  • uid - a unique identifier.
  • rest of the keys - key mentioned in each of columnNames object.
  1. [
  2. {
  3. "uid": "x",
  4. "name": "a",
  5. "comp": "a LLC"
  6. },
  7. {
  8. "uid": "y",
  9. "name": "b",
  10. "comp": "b LLC"
  11. },
  12. {
  13. "uid": "z",
  14. "name": "c",
  15. "comp": "c LLC"
  16. }
  17. ]

Return value

Returns the selected objects which is the subset of data in the specified order.