I’m using version 3.6 and put together a 2U layout. If I keep headers enabled I can click the border separating the two frames and frame A minimizes. But if I hide the header in frame A double clicking the frame border does not minimize the frame. Is it possible to have this feature with the header hidden?
Thank you,
John
var main_layout = new dhtmlXLayoutObject( document.body, '2E' );
var i_menuFrame = main_layout.cells('a');
i_menuFrame._minHeight = 20;
i_menuFrame.setHeight('20');
i_menuFrame.hideHeader();
var layout_2 = main_layout.cells('b');
var layout_3 = layout_2.attachLayout('2U');
var i_vertMenu = layout_3.cells('a');
i_vertMenu.setText('Navigator');
i_vertMenu.setWidth('250');
i_vertMenu.fixSize(1,0);
i_vertMenu.attachURL('menuVert.php');
//i_vertMenu.hideHeader();
var i_iframeA = layout_3.cells('b');
i_iframeA.hideHeader();
i_iframeA.attachURL('#');
i_iframeA.getFrame().className = "iframeA";