Skip to content

Set Title

Standard

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

Plain Text Title

Set

1
2
3
jQuery(document).ready(function() {
    AppGiniHelper.tv.setTitle("text title");
});

Add

1
2
3
jQuery(document).ready(function() {
    AppGiniHelper.tv.addTitle(": text title");
});

Result (plain text)

"Projekte" has been replaces with "Custom Title"

HTML-formatted Text

Set

1
2
3
jQuery(document).ready(function() {
    AppGiniHelper.tv.setTitleHtml("custom <b>html</b> title");
});

Add

1
2
3
jQuery(document).ready(function() {
    AppGiniHelper.tv.addTitleHtml(": custom <b>html</b> title");
});

Result (HTML Text)


Hide

Version

Since 2022

1
2
3
jQuery(document).ready(function() {
    AppGiniHelper.tv.hideTitle();
});

See also