Hi Greg,

I don't think you're missing anything (if you are, then so am I). The 
built-in form renderers are intended to be used as they are, so it looks 
like you'll have to write your own.
qx.ui.form.renderer.Single uses a Grid layout, but only the left column 
(containing the labels) is set up to dynamically adjust its width. The 
following line in the constructor is responsible for this:

     layout.setColumnFlex(0, 1);

So your custom renderer could inherit from it and simply set the second 
column's flex property to 1 instead.


Regards,
Daniel

Greg Beaver schrieb:
> Hi,
> 
> I am having a great deal of trouble navigating the documentation of
> layouting for forms.  I have a tabview page (with a grow layouter)
> containing a splitpane.  The right widget is a form, and I would like it
> to expand to take the available space of the pane.  This does not appear
> to be possible without writing a new form renderer.  Is there something
> I'm missing?
> 
> Thanks,
> Greg
> 
> ------------------------------------------------------------------------------
> Download Intel® Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> 
> 


------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to