ng-resource を使用してサーバーからデータを取得し、そのデータを次のようにテーブル グリッドに配置しました。
<div ng-form name="grid">
<button type="submit" data-ng-disabled="grid.$pristine">Save</button>
<div class="no-margin">
<table width="100%" cellspacing="0" class="form table">
<thead class="table-header">
<tr>
<th>ID</th>
<th>Title</th>
</tr>
</thead>
<tbody class="grid">
<tr data-ng-repeat="row in grid.data">
<td>{{ row.contentId }}</td>
<td><input type="text" ng-model="row.title" /></td>
</tr>
</tbody>
</table>
</div>
</div>
[送信] ボタンをクリックすると、変更された行をグリッドでチェックし、そのputEntity(row)
行を引数として関数を呼び出すようにする方法はありますか?