52,800
社区成员
发帖
与我相关
我的任务
分享
var item = detailForm.findById('Field1');
var cmb = new Ext.form.ComboBox({
name:item.name,
id: item.id,
x:item.x,
y:item.y,
store: obj,
mode: 'local',
triggerAction: 'all',
width:item.width,
allowBlank:false,
editable:true,
hiddenName:item.name
});
detailForm.add(cmb);
detailForm.doLayout();