ngx-multiselectv2
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

Bootstrap MultiSelect For Angular

Libraries :

- Bootstrap 5.13
- Angular 16

Configuration

Customisation :

{
  dropdownPlacement?: 'dropdown-center' | 'dropup' | 'dropend' | 'dropstart'
  showSearch?: boolean ;
  showError?: boolean;
}

Choices Properties

{
  id?: number | string | undefined;
  name: string;
  checked?: boolean;
  visible?: boolean;
}
  • If id is not passed for an item, Idex is assumed as the id
  • name -> Label
  • Checked - Initial (Checked/not)
  • Visible - Show the Item

Component

<ngx-multiselect
    [items]="items"
    [options]="{
    showSearch: true,
    dropdownPlacement: 'dropdown-center'
    }"
    (selected)="stateSelected($event)"
></ngx-multiselect>

Package Sidebar

Install

npm i ngx-multiselectv2

Weekly Downloads

0

Version

0.1.1

License

MIT

Unpacked Size

63.7 kB

Total Files

14

Last publish

Collaborators

  • varadhodiyil