@angular2-mdl-ext/select
TypeScript icon, indicating that this package has built-in type declarations

0.10.3 • Public • Published

Select

Installing

npm i --save @angular2-mdl-ext/popover @angular2-mdl-ext/select

import { MdlSelectModule } from '@angular2-mdl-ext/select';

Usage example

<mdl-select [(ngModel)]="personId">
    <mdl-option *ngFor="let p of people" [value]="p.id">{{p.name}}</mdl-option>
</mdl-select>

using placeholder

<mdl-select placeholder="Person Name" [(ngModel)]="personId">
    <mdl-option *ngFor="let p of people" [value]="p.id">{{p.name}}</mdl-option>
</mdl-select>

using label with floating label

<mdl-select label="{{personLabel}}" floating-label [(ngModel)]="personId">
    <mdl-option *ngFor="let p of people" [value]="p.id">{{p.name}}</mdl-option>
</mdl-select>

API Summary

mdl-select

Name Type Description
[ngModel] any Select data binding
[disabled] boolean Whether or not the select is disabled
[placeholder] string Placeholder text
[label] string Label text
[floating-label] any If present or true the label will be floating on focus event
[multiple] boolean Multiselect mode

mdl-option

Name Type Description
[value] any Option value
<content> string Option label

Package Sidebar

Install

npm i @angular2-mdl-ext/select

Weekly Downloads

6

Version

0.10.3

License

MIT

Last publish

Collaborators

  • angular2-mdl-ext