I am trying to build a really simple demo. Just three QxWidgets; 
one top to bottom on the left side, one across the top and one 
more in the middle.

I am using the QxDockLayout. The code so far is:

    var dl = new QxDockLayout;
    dl.setEdge(0, 0, 0, 0);
  
    var l1 = new QxWidget;
    l1.setWidth(200);
    l1.setBackgroundColor("blue");
    
    var t1 = new QxWidget;
    t1.setHeight(80);
    t1.setBackgroundColor("yellow");   
    
    dl.add(l1, "left");
    dl.add(t1, "top");
    d.add(dl);

The problem is that the Yellow widget takes precedence over the Blue one.  
How do I force the Blue one to occupy all the space from top to bottom and 
for the Yellow one to use the remaining horizontal space.
Thanks
AB



-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to