Is there any way to know if the grid has finished updating lines, or even if it has finished loading them?
I tried to do it this way:
$scope.gridApi.core.on.filterChanged($scope, function() {
console.log('filter changed');
$timeout(foo(),800);
});
But I'm not getting the grid change callback or load termination.