Reputation: 1305
Upvotes: 0
Views: 363
Reputation: 3513
Have you tried this:
$scope.gridApi.core.getVisibleRows()
Or you can use more precisely:
$scope.gridApi.core.getVisibleRows($scope.gridApi.grid);
This will give array of rows in grid (with current sort condition)
Upvotes: 0