This project was generated with Angular CLI version 1.0.1.
This project is built for showing how to use angular-select2-component.
Source code in: https://github.com/godbasin/angular4-select2/tree/npm-publish-code.
Angular-Select2-Component is baseed on these plugins and libs(version):
// npm install
npm install angular-select2-component --save
// if you have not installed jquery
npm install jquery --save- Import component.
// import NgModule
import {NgModule} from '@angular/core';
// import Select2Component
import {Select2Component} from 'angular-select2-component';
@NgModule({
// ...
// declare components
declarations: [Select2Component]
})
export class YourModule {
}- Template.
<select2 [options]="options" [settings]="{ setting: value }" [(ngModel)]="optionSelected" (onSelect)="onSelect($event)"></select2>options:option[]- select options for select2
option:{id: value, text: key}orstring
ngModel: option value that is selected(idorstring)onSelect- callback when option selected
- parmas:
option({id: value, text: key}orstring)
settings- configurable settings, see Select2 options API
setting:{ settingOption: value, settingOption: value }