| 123456789101112131415 |
- window.renderCell = function(result, {col, row})
- {
- if(col.name === 'full_path')
- {
- result[0] = {html:'<a href="' + gitlabUrl + '/' + row.data.full_path + '" target="_blank">' + row.data.full_path + '</a>', style:{flexDirection:"column"}};
- return result;
- }
- return result;
- };
- window.searchGroup = function()
- {
- loadPage({method:'post', data: {keyword: $('#keyword').val()}, target: '#table-gitlab-browsegroup>*'});
- }
|