Categories | Question details Back To List | ||
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 Answer posted by Alex (support) on Mar 03, 2009 02:33 Hello, You can try to hide the cells headers with << and >> buttons: dhxLayout.forEachItem(function(item){ }); Answer posted by Rachel on Mar 03, 2009 07:22 Well, that's not exactly what I had in mind. But, I suppose it will serve my purposes. Thanks! |