Skip to content

Instantly share code, notes, and snippets.

@darrylhebbes
Created April 24, 2014 10:43
Show Gist options
  • Save darrylhebbes/11249982 to your computer and use it in GitHub Desktop.
Save darrylhebbes/11249982 to your computer and use it in GitHub Desktop.
ng-model selected item
<select name="rawProductID" name="rawProductID" ng-model="entity.rawProduct.id">
<option value="-">choose</option>
<option ng-repeat="product in products" value="{{product.id}}">{{product.name}} / {{product.id}}</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment