My Use Case is pretty simple. A User, after editing a Cell (enableCellEdit: true), should have the data \"automatically\" sent to the server (on cell blur). I tried differen
If you're using UI Grid 3.0 that event is: uiGridEventEndCellEdit
$scope.$on('uiGridEventEndCellEdit', function (data) { console.log(data.targetScope.row.entity); }