You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 16, 2019. It is now read-only.
<mdl-select[(ngModel)]="personId"><mdl-option*ngFor="let p of people"[value]="p.id">{{p.name}}</mdl-option>
</mdl-select>
using placeholder
<mdl-selectplaceholder="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-selectlabel="{{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