16 lines
451 B
JavaScript
16 lines
451 B
JavaScript
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>*'});
|
|
}
|