effort.ui.js 367 B

123456789101112
  1. window.renderCell = function(result, info)
  2. {
  3. const data = info.row.data;
  4. if(info.col.name == 'objectTitle')
  5. {
  6. if(data.objectType != 'custom')
  7. {
  8. result[0] = data.objectTitle ? {html : `<a href="${$.createLink(data.objectType, 'view', 'id=' + data.objectID)}">${data.objectTitle}</a>`} : '';
  9. }
  10. }
  11. return result;
  12. }