Check documentation for the latest version of dhtmlxSuite unload DHTMLX Docs

unload

unloads tabbar (destructor)

void unload();

Example

var myTabbar = new dhtmlXTabBar("parentId");
 
// unload
myTabbar.unload();
myTabbar = null;

Details

if a tabbar is attached to the cell of any dhtmlx component, unload will be called automatically when you unload parent component by closing window/tab or calling parentComponent.unload()

Back to top