Angular UI Grid click row
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 imagine this must be a very common desire, although I haven't really seen any documentation on how to do it. What's a good way to accomplish this? I figured out the answer myself. Here's my controller (ES6): 'use strict'; class TrackingRecordsCtrl { constructor($scope) { // The content of this template is included // separately $scope.gridOptions = { rowTemplate: 'app/components/tracking-record/grid-row.html', }; // This function is