Ext 表单隐藏 和显示 根据下拉框选择不同的值 显示不同的文本框 只显示...
发布网友
发布时间:2023-12-22 17:04
我来回答
共2个回答
热心网友
时间:2024-08-20 21:00
首先把hiddenLanel:true属性去掉.然后select 函数修改如下:
select:function(combo, record, index){
//alert(record.get('type')+" index : "+index +" combo : "+combo);
var t=record.get('type');
alert(t);
if(t==0){
Ext.getCmp('passwordId').setDisabled(false);
Ext.getCmp('passwordId').setVisible(true);
}else{
Ext.getCmp('passwordId').setDisabled(true);
Ext.getCmp('passwordId').setVisible(false);
}
你可以试试看 行不行.
热心网友
时间:2024-08-20 21:00
this.password 中 hiddenLabel:true 这句话去掉