If I understand you correctly, you should be able to do what you want with something like that. (Not tested this)
$scope.scrollTo = function( rowIndex ) { $scope.gridApi.core.scrollTo( $scope.gridOptions.data[rowIndex], 0); }; $scope.nextRow() { var current = $scope.gridApi.selection.getSelectedRows(); scrollTo(current + 1); }
Greetings
source share