| 1234567891011121314 |
- window.renderCell = function(result, info)
- {
- if(info.col.name == 'name' && result && info.row.data.protected)
- {
- result.push({html: `<span class="label secondary roundedsecondary-full">${protectedTag}</span>`});
- }
- return result;
- }
- window.search = function()
- {
- loadPage({method:'post', data: {keyword: $('#keyword').val()}, target: '#table-gitlab-browseproject>*'});
- }
|