angular2-virtual-select
TypeScript icon, indicating that this package has built-in type declarations

1.1.15 • Public • Published

angular2-virtual-select

A native angular 2 select and multi select component with virtual scrolling to allow thousands of options in one select component.

Install

npm install --save angular2-virtual-select

Demo

See Demo Here

Import module

import {ShSelectModule} from "angular2-virtual-select";
@NgModule({
  imports: [
    BrowserModule,
    ShSelectModule.forRoot()
  ]
})

Use component

<sh-select [options]="['aaaa','bbbb']"
           [(ngModel)]="selectedItems"></sh-select>  

Use with objects

<sh-select [options]="[{name:'aaa',foo:'foo'},{name:'bbb',foo:'foo'}]"
           [(ngModel)]="selectedItems"></sh-select>  

Multi select

<sh-select [options]="[{name:'aaa',foo:'foo'},{name:'bbb',foo:'foo'}]"
           [isMultiselect]="true"
           [(ngModel)]="selectedItems"></sh-select>  

Package Sidebar

Install

npm i angular2-virtual-select

Weekly Downloads

2

Version

1.1.15

License

ISC

Last publish

Collaborators

  • yonifarin