How to get the rows that are actually in the "Showing Items"? $scope.gridApi.core.getVisibleRows seems to be giving inconsistent values.
http://plnkr.co/edit/FRaCNxKhZ242rFyqNDkm?p=preview
gridApi.core.on.filterChanged($scope, function () {
$timeout(function () {
var allvisiblerows = $scope.gridApi.core.getVisibleRows($scope.gridApi.grid);
$scope.visibleRowsCount = allvisiblerows.length;
}, 0);
});