My team tried to do the following:
$scope.addTest = function () { var TestRow = { "name": "xx", "description": "xx", "subjectId": 15 }; $scope.gridOptions.selectAll() var testRowLength = $scope.gridData.push(TestRow); $scope.gridOptions.selectItem(testRowLength - 1, true); }
However, the last selectItem does the wrong selection. Therefore, we tried the following:
$scope.$apply(function () { $scope.gridData.push(TestRow); $scope.gridOptions.selectItem(testRowLength - 1, true); });
Now we get the error message:
Error: $apply already in progress
This issue has been posted as an issue on the ng-grid blog, but it has just been published and we need help with this as soon as possible. I hope someone can give us advice on how we can
source share