how to get a value from select (code) and send to controller in angular
for is using in the this controller??
My select consumes a web service
code:
<div class="form-group col-xs-12 offset-xs-2 col-md-3" ng-controller="productCtrl">
<label for="selectProduct">Product</label> <br>
<select class="form-control" id="product" required data-error="Select a Product!" tabindex="1">
<option value="" selected >Select a Product!</option>
<option value="{{product.codigo}}" ng-repeat="product in products">{{product.name}}</option>
</select>
<div class="help-block with-errors"></div>
</div>
ngOptiondocumentation