Any progress here? Have you tried to add borders to each widget to more exactly show their boundaries? Possibly it's just one missing auto-value.

Sebastian


Kent Olsson schrieb:
Hej Sebastian!

Can you see any error in this straightforward code? All the code is
inside a QxTabViewPage. I attach an image. It does not look very good.

The QxTree overwrites the QxLabel and the QxListView is never seen.

What is wrong? or a bug?

Kent
-----------
  var ownerL = new QxLabel("Owner");
  var ownerTF = new QxTextField();

  var aroT = new QxTree("Root");

  var lc =
  {
    permission : { label : "Rights", width : 100, type : "text" },
    ACO        : { label : "ACO",    width : 250, type : "text" }
  };

  var ld = [];

  var acoLV = new QxListView(ld, lc);

  // Layout
  var upperLayoutGL = new QxGridLayout();
  upperLayoutGL.setColumnCount(2);
  upperLayoutGL.setRowCount(1);

  upperLayoutGL.setColumnWidth(0, 50);
  upperLayoutGL.setColumnWidth(1, 250);

  upperLayoutGL.setRowHeight(0, 20);

  upperLayoutGL.add(ownerL, 0, 0);
  upperLayoutGL.add(ownerTF, 1, 0);

  var lowerLayoutHBL = new QxHorizontalBoxLayout();
  lowerLayoutHBL.add(aroT, acoLV);

  var layoutVBL = new QxVerticalBoxLayout();
  layoutVBL.add(upperLayoutGL, lowerLayoutHBL);

  this.add(layoutVBL);




-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to