I am trying to get  layoout that expands/shrinks to utilize the full browser
window. 
Here is my code

var scroll = new qx.ui.container.Scroll();
this.getRoot().add(scroll, {edge: 0});

var composite = new qx.ui.container.Composite(new qx.ui.layout.VBox());
 
scroll.add(composite);

composite.add(new qx.ui.basic.Label('Label'));

var tabView = new qx.ui.tabview.TabView();
var tab = new qx.ui.tabview.Page("Locations");
tabView.add(tab);

composite.add(tabView)

But as you can see, tabView takes all available space only in horizontal
while Vbox layout using or vertical while HBox using. What should I do to
make tabView taking free space in two directions?
http://tinyurl.com/38o782x
-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/TabView-layout-question-tp5191474p5191474.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to