I try to console.log each value in table from input number, but i received only 10 - value assigned in script.js. I wan't to console.log that value, you choose in input number.
My plunker: http://plnkr.co/edit/g1t4pludTTIAJYKTToCK?p=preview
Code :
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Name</th>
<th>System </th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="n in data">
<td style="word-break:break-all;">{{n.name}}</td>
<td>{{n.system}}</td>
<td>
<input class="form-control input-sm" type="number"
name="input" ng-model="value" min="0" max="100">
</td>
<td>
<button ng-click="postvalue()">Value</button>
</td>
</tr>
</tbody>
</table>
Thanks for answers in advance!
n.value.