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.
-- 
View this message in context: 
http://www.nabble.com/Remove-border-from-Iframe-in-Window-tp24916207p24916207.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


------------------------------------------------------------------------------
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