Title
Change the title of a table view.
Plain Text
Set
|
jQuery(document).ready(function() {
AppGiniHelper.tv.setTitle("text title");
});
|
Add
|
jQuery(document).ready(function() {
AppGiniHelper.tv.addTitle(": text title");
});
|
HTML-formatted Text
Set
|
jQuery(document).ready(function() {
AppGiniHelper.tv.setTitleHtml("custom <b>html</b> title");
});
|
Add
|
jQuery(document).ready(function() {
AppGiniHelper.tv.addTitleHtml(": custom <b>html</b> title");
});
|
Hide
|
jQuery(document).ready(function() {
AppGiniHelper.tv.hideTitle();
});
|
See also