Hi David, This works in my application.
There were some changes to Popup.js regarding zIndex in http://svn.sourceforge.net/qooxdoo/?rev=8506&view=rev where zIndex was formerly defined as Infinite and is now defined as a finite number: =================================================================== --- trunk/qooxdoo/frontend/framework/source/class/qx/ui/popup/Popup.js 2007-06-10 18:21:57 UTC (rev 8505) +++ trunk/qooxdoo/frontend/framework/source/class/qx/ui/popup/Popup.js 2007-06-11 08:27:05 UTC (rev 8506) @@ -360,7 +360,7 @@ */ bringToFront : function() { - this.setZIndex(Infinity); + this.setZIndex(this._minZIndex+1000000); this._sendTo(); }, @@ -374,7 +374,7 @@ */ sendToBack : function() { - this.setZIndex(-Infinity); + this.setZIndex(this._minZIndex+1); this._sendTo(); }, Maybe your issue is related to that change. dperez schrieb: > Hi, > > A problem I have detected with 0.7, is that if I open a modal window B from > another modal window A, window B appears below window A. I expect the most > recent window to be on top of the other ones. This didn't happend with > version 0.6.6. > > Is this a bug? > > Cheers > David > -- Mit freundlichen Grüßen Dietrich Streifert -- Visionet GmbH Firmensitz: Am Weichselgarten 7, 91058 Erlangen Registergericht: Handelsregister Fürth, HRB 6573 Geschäftsführer: Stefan Lindner ------------------------------------------------------------------------- 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
