dthmlxtabber inside dhtmlxlayout

How do I set the mode such that the tabber is displaying on the left so that it doesn’t cover the layout’s text. My code is:














Layout doesn’t provide another way of automatic tabbar implementation.


You can try to use the following approach.






















Will there be a fix for this coming?



var tabbar = dhxLayout.cells(“a”).attachTabbar();



To me the above code makes sense…you attach the tabbar to the layout cell and whenever the layout cell is resized the tabbar automatically resizes.  Works great.



The only problem is that the tabbar covers the layout header area and thus covers the layout cell quick collapse button. 



If you can’t prevent that tabbar from covering the layout cell header is there a way to add the layout header quick collapse button to the tabbar tabs area?



 



 


attachTabbar method hides a header of a cell. To show it. You can use the following:


var tabbar = dhxLayout.cells(“a”).attachTabbar();


dhxLayout.cells(“a”).showHeader()