Skip to content

Instantly share code, notes, and snippets.

@A2H111
Created August 13, 2016 13:37
Show Gist options
  • Save A2H111/a977338c03ae8cacf7216ea9990623c1 to your computer and use it in GitHub Desktop.
Save A2H111/a977338c03ae8cacf7216ea9990623c1 to your computer and use it in GitHub Desktop.
<div ng-app="drpdwnApp" ng-controller="drpdwnCtrl">
Order
<select ng-model="drpdpwnvalue" ng-change="fillCustomerList(drpdpwnvalue)">
<option ng-repeat="item in ProductList" value="{{item.OrderID}}">{{item.OrderID}}</option>
</select>
Customers
<select>
<option ng-repeat="item in CustomerList" value="{{item.CustomerName}}">{{item.CustomerName}}</option>
</select>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment