i am currently working on a form that contains angular values.
<tr ng-repeat="alldata in c.da">
<td>{{alldata.id}}</td>
<td><input type="text" class="form-control" value="{{alldata.name}}" /></td>
<td><input type="text" class="form-control" value="{{alldata.numbers}}" ng-model="contact.number" /></td>
<td><button type="submit" class="btn btn-primary" ng-model="alldata.contactid" value="{{alldata.id}}">Save</button></td>
</tr>
however, i have encountered an issue where the ng-model
is not displaying the value as expected.