我一直在尝试为我的对话框创建一个基窗口类。为了创建控件,我决定重写 _createChildControlImpl 方法并使用 getChildControl 方法。除了复选框,一切看起来都很好。我不知道为什么,但是如果使用 getChildControl 方法,复选框不会正确呈现。
这段代码重现了我的问题
qx.Class.define("MyWin",{
extend: qx.ui.window.Window,
construct: function(t){
this.base(arguments, t);
this.setLayout(new qx.ui.layout.Canvas());
var row = new qx.ui.container.Composite(new qx.ui.layout.HBox(5));
row.add(new qx.ui.basic.Label("Active:"));
row.add(this.getChildControl("active"));
row.add(new qx.ui.form.CheckBox("status B"));
var _mainContainer = new qx.ui.container.Composite(new qx.ui.layout.VBox(5));
_mainContainer.add(row);
this.add(_mainContainer, {width: "100%", bottom: 50, top:0});
},
members: {
_createChildControlImpl : function(id, hash){
var control;
switch(id){
case "active":
control=new qx.ui.form.CheckBox("status A");
break;
}
return control || this.base(arguments, id);
}
}
});
var win = new MyWin("Test");
this.getRoot().add(win, {left:20, top:20});
win.open();
游乐场链接http://goo.gl/Lna8qc