Files
EasySoft-ZenTaoPMS/module/my/js/execution.ui.js
T

11 lines
356 B
JavaScript

window.onRenderExecutionCell = function(result, info)
{
if(info.col.name === 'name' && systemMode == 'ALM')
{
result.push({html: '<span class="label size-sm circle ' + (info.row.data.type == 'stage' ? 'warning' : 'secondary') + '-pale">' + typeList[info.row.data.type] + '</span>'}, {className:'row-reverse'});
}
return result;
}