Check documentation for the latest version of dhtmlxSuite enableContentZone DHTMLX Docs

enableContentZone

enables/disables the content zone

void enableContentZone(boolean mode);
modebooleantrue/false to enable/disable, enabled by default

Example

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");

Details

used to show custom content in a custom area

Back to top