关于extjs的问题
newExt.FormPanel({labelWidth:75,//labelsettingsherecascadeunlessoverriddenframe:true,...
new Ext.FormPanel( { labelWidth : 75, // label settings here cascade unless overridden frame : true, layout:"form", bodyStyle : 'padding:5px 5px 0', width : 360, id:'addForm', fileUpload:true, waitMsgTarget : true, reader: new Ext.data.JsonReader({root:'root'}, [ {name: 'cerid',mapping:'cerid',type:'int'}, ... {name: 'cername',mapping:'cername',type:'string'}, {name: 'cerfile',mapping:'cerfile',type:'oracle.sql.CLOB'}, {name: 'cerdate',mapping:'cerdate',type:'java.util.Date'}, ]), defaults : { width : 230 }, items : [
{ xtype: 'textfield', fieldLabel : ' 证书ID', name : 'corno', blankText : '证书ID不能为空', allowBlank : false } ,{ xtype: 'textfield', fieldLabel : ' 客户号', name : 'corno', blankText : '客户号不能为空', allowBlank : false }, { xtype: 'textfield', fieldLabel : '操作员号', name : 'opno', blankText : '操作员号不能为空', allowBlank : false },{ xtype: 'fileuploadfield', fieldLabel: '文件路径', name: 'cerfile', allowBlank: false, buttonText: '选择文件', blankText: '请上传文件', anchor: '90%' } ] });
我如何把第一个文本框隐藏。如何把第二个文本框设置为不可用。。。 展开
{ xtype: 'textfield', fieldLabel : ' 证书ID', name : 'corno', blankText : '证书ID不能为空', allowBlank : false } ,{ xtype: 'textfield', fieldLabel : ' 客户号', name : 'corno', blankText : '客户号不能为空', allowBlank : false }, { xtype: 'textfield', fieldLabel : '操作员号', name : 'opno', blankText : '操作员号不能为空', allowBlank : false },{ xtype: 'fileuploadfield', fieldLabel: '文件路径', name: 'cerfile', allowBlank: false, buttonText: '选择文件', blankText: '请上传文件', anchor: '90%' } ] });
我如何把第一个文本框隐藏。如何把第二个文本框设置为不可用。。。 展开
2个回答
展开全部
①
items : [
{
xtype: 'textfield',
fieldLabel : ' 证书ID',
name : 'corno',
blankText : '证书ID不能为空',
allowBlank : false,
xtype:'hidden' 一楼正解,EXT主要是通过这些属性改变的
}
②
items : [
{
xtype: 'textfield',
fieldLabel : ' 证书ID',
name : 'corno',
blankText : '证书ID不能为空',
allowBlank : false,
disabled : true 一楼正解,EXT主要是通过这些属性改变的
}
感觉你这个应该只是画面吧,传值的好像一点没有加入!!!!
你可以去官网看他的例子,好多类型可以参考,有参考文档下载下来
items : [
{
xtype: 'textfield',
fieldLabel : ' 证书ID',
name : 'corno',
blankText : '证书ID不能为空',
allowBlank : false,
xtype:'hidden' 一楼正解,EXT主要是通过这些属性改变的
}
②
items : [
{
xtype: 'textfield',
fieldLabel : ' 证书ID',
name : 'corno',
blankText : '证书ID不能为空',
allowBlank : false,
disabled : true 一楼正解,EXT主要是通过这些属性改变的
}
感觉你这个应该只是画面吧,传值的好像一点没有加入!!!!
你可以去官网看他的例子,好多类型可以参考,有参考文档下载下来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询