enables/disables the content zone
mode | boolean | true/false to enable/disable, enabled by default |
var myTabbar = new dhtmlXTabBar("parentId");
// disabling content zone
myTabbar.enableContentZone(false);
// then adding tabs
myTabbar.addTab("a1", "Rage", null, null, true);
myTabbar.addTab("a2", "Motorhead");
used to show custom content in a custom area
Back to top