Hi Omid,
Omid Mottaghi wrote:
> Hi again :)
>
> How to maximize a window in a container boundary?
> or/and which containers can I add a window?
Each window widget is automatically added to your application root. To
show the window you simple have to call the "open" method after you
created the window widget.
Additionally you can use the "add" method to position your window before
it is shown.
--snip--
var win = new qx.ui.window.Window("First Window",
"icon/16/apps/office-calendar.png");
win.setLayout(new qx.ui.layout.VBox(10));
win.setShowStatusbar(true);
win.open();
// use can also use the "add" method to position the window
// "this" is a reference to your application
this.getRoot().add(win, {left:20, top:20});
--snip--
cheers,
Alex
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel