dhtmlxLayout doesn't work on Firefox and Internet Explorer

Hi,

I have very strange situation after upgrade to version 4.0. This code works perfect on chrome, but doesn’t work on IE and Firefox:

[code]

[/code]

I made it as simple as it is possible… On Chrome I have:

But on IE and Firefox:

On Firefox console I see these warnings:

And in Element inspector there is no height value for this cell:

<div class="dhx_cell_layout" style="left: 2px; top: 4px; width: 1420px;"> … </div>

Please help…

Best regards,
Xirad

Hi,

I found a solution. I had to add to head section:

[code]
/* it’s important to set width/height to 100% for full-screen init */
html, body {
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}

[/code]

BR
Xirad