Mustafa,

I apologize I don't know how to share a playground example. 

Does the following code example help explain what I am trying to do. 

Clicking in the content area of either of the windows will not move the
window to the top of the stack.

-Chris

var win1 = new qx.ui.window.Window("First Window");
win1.setLayout(new qx.ui.layout.Grow());
win1.setWidth(600);
win1.setHeight(400);

var iframe1 = new qx.ui.embed.ThemedIframe("http://qooxdoo.org/downloads";);
iframe1.setPadding(0);

win1.add(iframe1);

this.getRoot().add(win1, {left:20, top:20});
win1.open();


var win2 = new qx.ui.window.Window("Second Window");
win2.setLayout(new qx.ui.layout.Grow());
win2.setWidth(500);
win2.setHeight(300);

var iframe2 = new
qx.ui.embed.ThemedIframe("http://manual.qooxdoo.org/current/qooxdoo.pdf";);
iframe2.setPadding(0);

win2.add(iframe2);

this.getRoot().add(win2, {left:180, top:140});
win2.open();




--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Controlling-window-stacking-when-windows-contain-iframes-tp7586018p7586030.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to