Skip to content

Instantly share code, notes, and snippets.

@srttk
Created May 26, 2017 10:45
Show Gist options
  • Save srttk/5dd032b37ac068b65053fbc77bcd7c3a to your computer and use it in GitHub Desktop.
Save srttk/5dd032b37ac068b65053fbc77bcd7c3a to your computer and use it in GitHub Desktop.
Angular 2 Material Select
<md-select class="md-select-custom-style" name="datasourcetype" placeholder="Data Source Type" [(ngModel)]="dataSource.dataSourceTypeId">
<md-option *ngFor="let dsType of dataSourceTypes" [value]="dsType.dataSourceTypeId">{{ dsType.name }}</md-option>
</md-select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment