10 lines
298 B
JavaScript
10 lines
298 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;
|
|
}
|