I am trying to add a column that has a link to another page (this is an ng-grid table). This link contains one of the string values
I tried something like this:
$scope.columns = [ {field:'id', displayName:'#'}, {field:'name', displayName:'Name'}, {field:'view', displayName:'Action', cellTemplate: '<a href="http://foo.com/person/' + {row.getProperty(col.id)} + '">[View Details]</a>'} ];
But it doesnβt work, any ideas?
source share