Howdy!

http://bugzilla.qooxdoo.org/show_bug.cgi?id=190

Fixed by incorporating the workaround, both in trunk and legacy_0_6_x.
It's the best pragmatic solution for now. Still, this bug needs further
investigation, what exactly causes IE to crash.

None of our Windows PCs shows those problems, so it would be great if people
affected by this bug could help in tracking down the cause (e.g. ways to
reproduce the crash, additional debugging statements, ...).

Andreas


[EMAIL PROTECTED] wrote:
> Thanks for the quick response.
> 
> The workaround helped and its finally working :-)
> 
> Just one thing i had to change the workaround a little.
> Instead of qx.sys.Client.getInstance().isMshtml() i used the following:
> ------------------
> 
>     if (qx.core.Client.getInstance().isMshtml()) {
>   var originalOnreadystatechange =
> qx.io.remote.XmlHttpTransport.prototype._onreadystatechange;
>   qx.io.remote.XmlHttpTransport.prototype._onreadystatechange = function() {
>     var obj = this;
>     window.setTimeout(function() {
>       originalOnreadystatechange.call(obj);
>     }, 0);
>   };
> }
> -----------------
> 
> >
> > Maybe this helps:
> >
> > http://www.nabble.com/IE7-crashing-with-qooxdoo-tf3447770.html#a9615518
> >
> >
> > gerds wrote:
> >>
> >> Hi,
> >>
> >> i have a problem using Ajax Requests and Internet Explorer7.0. I want to
> >> browse my server using a qooxdoo virtual tree. Displaying the root level
> >> of my server using a qx.io.remote.Request and then adding branches to my
> >> tree works fine. After that i´m using the changeSelection event to get
> >> the
> >> selected folder and again use a ajax request to get the content of that
> >> folder and add it to the tree. This all works fine in Mozilla and Opera
> >> but it causes Internet Explorer to crash. I tried to debug it using
> >> alert() to see where it crashes exactly and found out that its maybe
> >> just
> >> a timeout problem. When i insert an alert after the request.send()
> >> (before
> >> leaving the browse function) it works. Does anybody know a way to solve
> >> this without a alert()?
> >>
> >> Greets
> >>
> >> Gerd
> >>
> >> P.S. I´m using qooxdoo0.6.6



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to