unloads tabbar (destructor)
var myTabbar = new dhtmlXTabBar("parentId");
// unload
myTabbar.unload();
myTabbar = null;
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