0
我試圖在包含標籤,文本字段和按鈕的qx.ui.mobile.page.NavigationPage上添加一行。我希望文本字段佔用任何額外的水平空間(該行應水平跨越屏幕)。我認爲這會工作:如何在qooxdoo mobile中彈出TextField
var comp = new qx.ui.mobile.container.Composite();
comp.setLayout(new qx.ui.mobile.layout.HBox(null, 'middle'));
comp.add(new qx.ui.mobile.basic.Label("Filtering:"));
var f = new qx.ui.mobile.form.TextField();
comp.add(f, {flex:1});
var b = new qx.ui.mobile.form.Button("Update");
comp.add(b);
this.getContent().add(comp);
,但它並沒有(見http://tinyurl.com/nwlhtwq的操場例子)。 什麼做錯了?謝謝!