I am using AngularJs
and have inputs with predefined value from ng-repeat
. I want resend those data value via ng-click
function to treat data.
The problem the data is not submitted
<label>Price</label>
<input type="text" class="form-group form-control" ng-value=s.prix required="required" ng-model="prix" >
</div>
<div class="modal-footer">
<button type="submit" id='submit' ng-click="edit()" class="btn btn-primary" data-dismiss="modal">Save</button>
s.prix
is a value of column in the table prix (ng-repeat="s in produit")
if you know what i mean.