I have a list of items in an Angular UI Grid. When I click a row, I want to be taken to a different page. (In other words, each row in the grid will be a link.)
I im
$scope.gridOptions.onRegisterApi = function( gridApi ) { $scope.gridApi = gridApi; gridApi.selection.on.rowSelectionChanged($scope,function(row){ var msg = 'row selected ' + row.isSelected; //Open your link here. }); };
http://plnkr.co/edit/EO920wsxuqr3YU8931GF?p=preview