On Tue, Oct 21, 2008 at 10:43 AM, Klaus-F. Kaal <[EMAIL PROTECTED]>wrote:

>       // zone 3 for the table (which should all the feft space)
>       this._table = this.__createTable();
>       this.add(this._table);
>

It's taking up the full width because a VBox layout is always full-width.
To get it to take up the remaining vertical space, change that last line to
this:

  this.add(this._table, { flex : 1 } );

This tells the layout to allow the table to take up the available space.
You'll probably find this page enlightening:

    http://qooxdoo.org/documentation/0.8/ui_layouting

Cheers,

Derrell
-------------------------------------------------------------------------
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
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to