I am adding a ui-grid and want to be able to select a row and call a function. I also need to send to the function the data from the entire row (only a couple of columns are actually displayed), however I need the complete row passed to the function.
here are my options for the grid so fa:
$scope.gridOptions = {
enablePaginationControls: false,
paginationPageSize: 25,
multiSelect: false,
columnDefs: [
{
name: 'userInfo.firstName',
displayName: "First Name",
}, {
name: 'userInfo.lastName',
displayName: "First Name"
}
]
};