i have a dataTable that i define dynamically, based on my controller's model, as following:
<tbody>
<tr ng-repeat="rec in grid.records">
<td ng-repeat="col in grid.columns"
ng-init="value=rec[col.name]">
<span ng-model="rec[col.name]">{{value}}</span>
</td>
</tr>
</tbody>
why doesn't dataTable column values is updated when model changes?
ng-modelfor a non-input element?rec[col.name]is not a special property. An example of a special property would be$index.