In fact, the snippet in my previous post can be simplified to:
var container = new qx.ui.container.Scroll();
var composTest = new qx.ui.container.Composite(new
qx.ui.layout.HBox(3));
var compos = new qx.ui.container.Composite(new qx.ui.layout.VBox(0));
compos.add(new qx.ui.basic.Atom().set({height:700}));
compos.add(new qx.ui.basic.Label("Hello").set({height:300}));
var field = new qx.ui.form.SelectBox();
var type = new qx.ui.form.ListItem("A");
field.add(type);
type = new qx.ui.form.ListItem("B");
field.add(type);
type = new qx.ui.form.ListItem("C");
field.add(type);
type = new qx.ui.form.ListItem("D");
field.add(type);
compos.add(field);
compos.add(new qx.ui.basic.Atom().set({height:300}));
container.add(compos);
this.getRoot().add(container, {edge:0});
}
And the problem would still exist.
--
View this message in context:
http://qooxdoo.678.n2.nabble.com/Very-Strange-SelectBox-behaviour-tp5366531p5368812.html
Sent from the qooxdoo mailing list archive at Nabble.com.
------------------------------------------------------------------------------
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel