Set title (Table View)

Version 2020/10

Standard

Standard label/caption of table projects is "Projekte" (DE).

Plain text title

Code

// file: hooks/TABLENAME-tv.js
jQuery(document).ready(function () {
  AppGiniHelper.TV.setTitle("Custom title");
});

Result (plain text)

"Projekte" has been replaced by "Custom title".

Html title

Code

// file: hooks/TABLENAME-tv.js
jQuery(document).ready(function () {
  AppGiniHelper.TV.setTitleHtml("Custom <b>HTML</b> title");
});

Result (html)

Do you like it?