The layout does not go over the entire range

Hello,

I have a problem with the layout component.
And although I do not get the layout of the entire area.
I’ve created a short demo video.

myLayout=new dhtmlXLayoutObject(document.body,"2U","dhx_skyblue"); myLayout.cells("a").setWidth(350); myLayout.cells("a").setText("Navigation"); myLayout.cells("b").setText("Vorschaubereich");

Best regards

Heiko

Make sure that you are calling the initialization of layout on body load.
See the samples of full screen initialization layout:
dhtmlx.com/docs/products/dht … creen.html
Check, that your document & body have dimension, in sample used:

html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; overflow: hidden; }

Set this CSS rule.

Hello,

thank you very much…
A CSS entry was incorrect.

Now it works.

Best regards

Heiko