Incorrect attachStatusBar using dhx_black or dhx_blue

Hi. everyone.
After Upgrade to 3.6 pro, some problems occurred.

When using dhx_blue skin or dhx_black styled dhxLayout with accordion, statusbar is hidden or incorrect height.

	dhxLayout = new dhtmlXLayoutObject("parentId", "3L");
	dhxLayout.setSkin("dhx_blue"); //or dhxLayout.setSkin("dhx_black");
	var sb1= dhxLayout.cells("a").attachStatusBar() ;
            sb1.setText("it is status bar#1") ; 
            dhxAccord = dhxLayout.cells("a").attachAccordion();

using a dhx_blue skin, accordion is override a statusbar
using a dhx_black skin, statusbar hide.

modified sample screenshot is attached.

Thanks.


Hi
You need to add after
sb1.setText(“it is status bar#1”) ;
The next 2 lines:
dhxLayout.cells(“a”).vs[dhxLayout.cells(“a”).av].sbHeight=20;
dhxLayout.setSizes();

Thank you.
I works fine…

You are welcome!