Disable collapsing in dhtmlxLayout

Hi, I’ve created a layout and I want to disable collapsing of the cells. I want the little << and >> images to stop showing up as well. I’m okay with resizing, just not collapsing. Is this possible? I have searched through the API and haven’t found anything to turn it off.



Please help!



Thank you,

Rachel


Hello,


You can try to hide the cells headers with << and >> buttons:


dhxLayout.forEachItem(function(item){


item.hideHeader();

});

Well, that’s not exactly what I had in mind.  But, I suppose it will serve my purposes.  Thanks!