initConditionForm : function(){
var form = this.form
if(!form){
var form = new Ext.form.FormPanel({
id : "detailConForm",
labelAlign : "right",
border : true,
autoWidth : true,
baseCls : "x-plain",
width : this.width,
padding : 5,
autoHeight : true,
items : [{
xtype : "textfield",
name:'manageUnit',
fieldLabel:'管辖机构',
blankText:'管辖机构必填',
disabled : true,
allowBlank:false,
labelWidth : 70,
width : 200
}]
})
form.on("afterrender", this.afterRenderForm , this);
this.form = form
}
return form;
},
FormPanel示例
最新推荐文章于 2019-08-13 01:55:07 发布