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