@jaspero/ng2-select
v0.1.2
Published
A select library for Angular 2, with both single and multiple functionality.
Downloads
20
Readme
NG2 Select
A select library for Angular 2, with both single and multiple functionality.
npm install --save @jaspero/ng2-select
Setup
Import JasperoSelectModule
in your @NgModule
:
@NgModule({
imports: [
JasperoSelectModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
How To Use
To use the library simply add the component in your templates:
<jaspero-select></jaspero-select>
Options
You can pass the following inputs to the component:
|Name|Type|Description|Default| |---|---|---|---| |options|An array of options for the select dropdown|any[]|[]| |key|The key from the options object to be used as the name of the option|string|name| |multi|Should more options be selectable at once|boolean|false|
This component also support Angular 2 template driven and reactive forms.