browse.ui.js 271 B

1234567891011
  1. window.renderCell = function(result, {col, row})
  2. {
  3. if(col.name === 'url')
  4. {
  5. result[0] = {html:'<a href="' + row.data.url + '" target="_blank">' + row.data.url + '</a>', style:{flexDirection:"column"}};
  6. return result;
  7. }
  8. return result;
  9. };