Skip to content
Snippets Groups Projects
Commit 789ccc99 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #8887: column for radb id with link to table browser

parent fe6e3de4
No related branches found
No related tags found
No related merge requests found
......@@ -77,12 +77,18 @@ gridControllerMod.controller('GridController', ['$scope', 'dataService', 'uiGrid
displayName: 'MoM ID',
enableCellEdit: false,
cellTemplate:'<a target="_blank" href="https://lofar.astron.nl/mom3/user/project/setUpMom2ObjectDetails.do?view=generalinfo&mom2ObjectId={{row.entity.mom2object_id}}">{{row.entity[col.field]}}</a>',
width: '8%'
width: '6%'
},
{ field: 'otdb_id',
displayName: 'SAS ID',
enableCellEdit: false,
width: '8%'
width: '6%'
},
{ field: 'id',
displayName: 'RADB ID',
enableCellEdit: false,
cellTemplate:'<a target="_blank" href="tasks/{{row.entity.id}}.html">{{row.entity[col.field]}}</a>',
width: '6%'
}];
$scope.gridOptions = {
enableGridMenu: false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment