Guest User

Untitled

a guest
Mar 26th, 2018
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. renderCellDetail: function MySites_renderCellDetail(elCell, oRecord, oColumn, oData)
  2. {
  3. var site = oRecord.getData(),
  4. /**description = '<span class="faded">' + this.msg("details.description.none") + '</span>',*/
  5. desc = "";
  6.  
  7. if (site.isInfo)
  8. {
  9. desc += '<div class="empty"><h3>' + site.title + '</h3>';
  10. /** desc += '<span>' + site.description + '</span>*/</div>';
  11. }
  12. else
  13. {
  14. // Description non-blank?
  15. /** if (site.description && site.description !== "")
  16. {
  17. description = $links($html(site.description));
  18. }*/
  19.  
  20. desc += '<h3 class="site-title"><a href="' + Alfresco.constants.URL_PAGECONTEXT + 'site/' + site.shortName + '" class="theme-color-1">' + $html(site.title) + '</a></h3>';
  21. /** desc += '<div class="detail"><span>' + description + '</span></div>';*/
Add Comment
Please, Sign In to add comment