angular2-virtual-select-single-fix
v1.1.15
Published
A native angular 2 select and multi select component with virtual scrolling to allow thousands of options in one select component
Downloads
3
Maintainers
Readme
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
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>