Hello,

I created a new QxBuilder example, a simple login window:

http://m15s08.vlinux.de/~cboulanger/QxBuilder/tests/login.php

Here, a wierd difference between Firefox and IE exists. If I try to 
center the login window to the browser by

        <qx:window
            id="loginwindow"
            width="300" height="auto"
            caption="Login"
            modal="true"
            showMinimize="false"
            showMaximize="false"
            showClose="false"
            display="true"
            onAppear="this.centerToBrowser()">

<==>

var qx_2 = loginwindow = new QxWindow("Login");
qx_2.set({width:300,height:"auto",modal:true,showMinimize:false,showMaximize:false,showClose:false,display:true});
qx_2.addEventListener('appear',function(event){this.centerToBrowser()},qx_2);

this works only in IE. In Firefox, I need to move the mouse before the 
window centers. It doesn't help to put "QxWidget.flushGlobalQueues()" 
after "this.centerToBrowser()".

The other test widgets are available at

http://m15s08.vlinux.de/~cboulanger/QxBuilder/tests/

I added links to show the XML and the PHP source code.

Cheers,

Christian

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to