How to configure layout col to be collapsed

I have an explorer-like layout consisting of two vertical panes (cols). Left col has header. That header provides ‘collapse’ functionality. How can i configure that col to be collapsed when page is loaded?

You can set “collapsed” property:

http://webix.com/snippet/78459f8d

Maria, thank you. That’s exactly what i was looking for in the documentation of general layout (not accordeon). I actually I tried ‘collapse: true’ but it was not good enough …

You can use hide()/show() methods and hidden property in view configuration:

http://webix.com/snippet/74d6c534

“collapsed” is the setting i was looking for. the one i tried was ‘collapse’ without ‘d’. ‘hide()’ completely remove view and that’s not what i needed.

Anyway - thanks again