Fixed Layout without splitter bars showing?

Hi all -

Is it possible to have a dhtmlxLayout pattern defined such that the splitter bars are not visible? I figure that implies that the regions (cells) would then be “fixed” and not movable (manually, at least).

Alternatively, would it be possible to reduce the splitter bars to a single (movable) line at least?

Thanks

If you want to make it “invisible”, you can hardly modify a skin-CSS. But it is not approach.

Try to apply to your layout cells the next method:
layout.cells(id).fixSize(true, false)
It will fix cells sizes and forbid its changes.

Thanks, Darya. I will give that a try.