I tryed to reproduce this situation in simple page but i couldn't do it.
Maybe this bug appears in complex applications like mine.

I wrote the following script. If you try to resize small window to the right over the iframe it will stop responding(in Firefox). I think this is the same bug as with my app containing fckeditor.

window.application.main = function()
        {
                var d = this.getClientWindow().getClientDocument();

                var wnd = new QxWindow("Test window");
                with( wnd )
                {
                        setDimension( 600, 400 );
                        setCentered( true );
                }

                var iframe = new QxIframe( "http://www.google.com"; );
                iframe.setLocation( 0, 0 );
                iframe.setDimension( "100%", "100%" );
                wnd.add( iframe );

                var wnd2 = new QxWindow("window 2");
                wnd2.setSpace( 100, 100, 200, 200 );

                d.add(wnd);
                d.add( wnd2 );

                wnd.open();
                wnd2.open();
        };

Sebastian Werner пишет:
Kirill Balyasnikov schrieb:
I will try to explain a bug: i'm using two objects of type QxIframe and QxWindow one inside another. In QxIframe there is FCKeditor. Then i typing a text in editor and then try to move QxWindow it stops responding to any events. And all other objects too. If i simply click the window title and after that move QxWindow, everything works ok. This is buggy in Firefox, not in IE.

Sounds interesting. Could you try to reproduce this with a smaller example (probably without fckeditor)? Afterwards please send us the example to check if we can fix this.

Sebastian



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to