znt/module/block/js/releaseblock.ui.js

11 lines
299 B
JavaScript

window.onRenderReleaseNameCell = function(result, info)
{
if(info.col.name === 'name' && info.row.data.marker == '1')
{
result[result.length] = {html: "<icon class='icon icon-flag text-danger' title='" + markerTitle + "'></icon>"};
return result;
}
return result;
}