releaseblock.ui.js 299 B

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