I am trying to find the exact cell-data that is modified when the "ngGridEventEndCellEdit" event fires.
$scope.$on('ngGridEventEndCellEdit', function (event) {
rowData = event.targetScope.row.entity;
cellData = event.targetScope.row.???;
});
Reason being that the data in each ngGrid-cell (per row) contains data from several records in my db (think pivot table) and as such I would like to update only 1 db-row that relates to the specific ngGrid-cell without having to update several db-rows for each event fired.
If not I'm going to have to revert to using cellEditableTemplate + ng-change as explained here