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.