Skip to content

Instantly share code, notes, and snippets.

@ashhitch
Created January 5, 2018 13:59
Show Gist options
  • Select an option

  • Save ashhitch/6b4c8d1631e6e0d8892f0a633a21b41c to your computer and use it in GitHub Desktop.

Select an option

Save ashhitch/6b4c8d1631e6e0d8892f0a633a21b41c to your computer and use it in GitHub Desktop.
Set default value for <select> in Angular 2+ Template Driven Forms
<select [ngModel]="field ||''">
<option value="">Select field</option>
<option *ngFor="let property of properties" [ngValue]="property">{{property.name}}</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment