Add text/html to title (Table View)

Version 2020/10

Default Table View title

Add plain text to title

Code

// file: hooks/TABLENAME-tv.js
jQuery(document).ready(function() {
  AppGiniHelper.TV.addTitle(": This is custom text");
});

Result (plain text)

Add html to title

Code

// file: hooks/TABLENAME-tv.js
jQuery(document).ready(function() {
  AppGiniHelper.TV.addTitleHtml(": This is custom <b>HTML</b> text");
});

Result (html)

Do you like it?