The following illustrates the issue.

I understand the difficulty in managing stacking order when working with
iFrames, I was just hoping that someone may have worked out a solution
before.

Thanks,
-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();


On Fri, Aug 1, 2014 at 2:59 PM, Mustafa Sak <mustafa....@1und1.de> wrote:

> Hi Chris,
>
> could you please provide us with a playground example.
>
> Dealing with iframes is often difficult and makes things more complex.
>
> Regards Mustafa
>
> Von meinem iPhone gesendet
>
> > Am 01.08.2014 um 21:39 schrieb "Chris Bunn" <cha...@gmail.com>:
> >
> > I am working with a qx.ui.window.Window that contains an iframe. The
> iframe may contain generated HTML or a PDF document. When a second window
> overlays the window containg the iframe clicking back into the iframe
> portion of the window does not change the window stacking order. Is there a
> general solution to this problem.
> >
> > Thanks,
> > Chris
> >
> ------------------------------------------------------------------------------
> > Want fast and easy access to all the code in your enterprise? Index and
> > search up to 200,000 lines of code with a free copy of Black Duck
> > Code Sight - the same software that powers the world's largest code
> > search on Ohloh, the Black Duck Open Hub! Try it now.
> > http://p.sf.net/sfu/bds
> > _______________________________________________
> > qooxdoo-devel mailing list
> > qooxdoo-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>
> ------------------------------------------------------------------------------
> Want fast and easy access to all the code in your enterprise? Index and
> search up to 200,000 lines of code with a free copy of Black Duck
> Code Sight - the same software that powers the world's largest code
> search on Ohloh, the Black Duck Open Hub! Try it now.
> http://p.sf.net/sfu/bds
> _______________________________________________
> qooxdoo-devel mailing list
> qooxdoo-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to