1.1.15 • Published 7 years ago

angular2-virtual-select-single-fix v1.1.15

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

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>