Here is a code snippet that I wrote:
<tbody ng-repeat="dtataOne in dataOnes()">
<tr>
<td>My Data</td>
<td class="task-container ui-sortable" colspan="6" ng-model="dtataOne.MyModel" ui-sortable="sortableOptions" stafflastname="{{'Pup-Only'}}" data2="{{'999999'}}" task="{{100}}" data3="{{'No'}}">
<a href="javascript:void(0);" ng-repeat="tg in Getdata(data3)" ng-click="ShowData(tg)">{{tg.count}}</a>
</td>
</tr>
</tbody>
I also have a controller function:
$scope.Getdata = function(data3) {
var datas = [];
data3.forEach(function (staff) {
if (true) {
staff.tgs.forEach(function (tg) {
datas.push(tg);
});
}
});
$scope.data3s().forEach(function (datum) {
if (datum.id === data3.id) {
datum.MyModel = datas;
}
});
return datas;
};
While working on this code, I encountered an error in the line "datum.MyModel = datas;" which resulted in the following message:
Uncaught Error: [$rootScope:infdig] http://errors.angularjs.org/1.2.13/$rootScope/infdig?p0=10&p1=%5B%
If anyone can provide assistance with resolving this issue, it would be greatly appreciated.