-
Notifications
You must be signed in to change notification settings - Fork 2
2. Installation & Configuration
rajkumawat edited this page Oct 7, 2016
·
1 revision
install froiden-angular2-select package in your angular application using
npm install --save froiden-angular2-select
In systemjs.config.js
add froiden-angular2-select
to map and package:
var map = {
// others...,
'froiden-angular2-select': 'node_modules/froiden-angular2-select'
};
var packages = {
// others...,
'froiden-angular2-select': {
main: 'angular2-select.js',
defaultExtension: 'js'
}
};
Import the SelectModule
and define it as one of the imports of your
application module:
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {FormsModule} from '@angular/forms';
import {SelectModule} from 'froiden-angular2-select/angular2-select';
import {AppComponent} from './app.component';
@NgModule({
imports: [
BrowserModule,
FormsModule,
SelectModule
],
declarations: [
AppComponent
],
bootstrap: [
AppComponent
]
})
export class AppModule { }
Add the following HTML to the component template in which you want to use the select component: