Hi Qooxbert(...),

have you had a look at the webbrowser demo in playground?
I recommend you have a look here
http://demo.qooxdoo.org/current/playground/#Webbrowser

and especially at the source; try commenting out the decorator line for 
the iframe near the end of the source.

Does that help you?

Good luck,

greetings,
Stefan


qooxbert wrote:
> Hello,
> 
> I have a window in which I placed an iframe. Everything works fine but the
> iframe has a solid black border which Iam not able to remove. Things like
> inframe.setBorder(0) or so don`t work really.
> 
> How can I remove the border?
> 
> Here`s my code (I call it over a function which has the undefined variables
> (title,width...) here as parameters).
> 
> -------------------- snip --------------------------
> var win = new qx.ui.window.Window(title, "");
>       win.setLayout(new qx.ui.layout.VBox);
>                       win.setWidth(width);
>                       win.setHeight(height);
>                       win.setAllowMinimize(false);
>                       win.setAllowClose(false);
>                       win.open();
>       this.getRoot().add(win, {left: left, top: top});
>                       
>                       var inframe = new qx.ui.embed.Iframe(url);
>                       inframe.setWidth(width);
>                       inframe.setHeight(height-50);
>                       win.add(inframe);
> -------------------- snap --------------------------
> 
> Thanks for all answers.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to