Layout Cell header disapears when adding Tabbar to cell

Hi,



I am using dhtmlxLayout and when I add a tabbar to a cell, the cell header seems to disappear.

I have tried setText and showHeader but cannot seem to make the cell header “Yield Summary” re-appear



myLayout = new dhtmlXLayoutObject(document.body,“3J”,“dhx_blue”);

myLayout.cells(“a”).setText(“Yield Summary”);

yieldTabbar = myLayout.cells(“a”).attachTabbar();

yieldTabbar.setStyle(“modern”);



Thanks,



Dave

Hello,

This is a standard behavior.

I have same problem where i need expend/collapse button in any case for layout cell. Is there any way to show expend/collapse button in layout frame header which contains tabbar? Or any other preferable way?

You may show a cell header as follows:

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

Yes, it worked, thanks!