adjusts the size of the tabbar when the parent's size is changed
var myTabbar = new dhtmlXTabBar("parentId");
// if you change parent's size
document.getElementById("parentId").style.width = "800px";
document.getElementById("parentId").style.height = "600px";
// tabbar needs to be adjusted
myTabbar.setSizes();
added in version 4.0 in fullscreen mode and if the tabbar is attached to another dhtmlx component - called automatically
Back to top