angularjs ng-repeat select code example

Example 1: ng repeat syntax

<div ng-repeat="(key, value) in myObj"> ... </div>

<h1 ng-repeat="x in records">{{x}}</h1>

Example 2: angularjs dropdown

<select ng-options="v.name for v in variants | filter:{type:2}" ng-change="calculateServicesSubTotal(item)"
ng-model="item.selectedVariant" ng-show="item.id==8" name="posterVariants"
ng-required="item.id==8 && item.quantity > 0" class="ng-pristine ng-valid ng-valid-required">
    <option value="?" selected="selected"></option>
    <option value="0">set of 6 traits</option>
    <option value="1">5 complete sets</option>
</select>

Tags:

Html Example