dhtmlxWindow sticky on top

Hey,

got a strange error in Firefox(3.6) my Code to open a Window with layout:

myWindow = myLayout.dhxWins.createWindow("w1",10,10,300,300); myWindow.setText("lol");

results in a opened window that i can move horizontal but it´s sticky at the top of screen and can´t be moved verticaly.
i tried to do this :

var dhxWins= new dhtmlXWindows(); var win = dhxWins.createWindow("error_window", 100, 100, 300, 350); win.setText(Title); win.centerOnScreen(); win.show();

Same problem. In IE and Safari it works perfectly , both.

Okay, problem resolved :slight_smile:

<body onload="doOnInit()">

is they weak link ^^

it should be :

<body onload="doOnInit()"  style="width:100%; height:100%; margin:0px; overflow:hidden;">