发布网友 发布时间:2022-04-27 02:29
共2个回答
热心网友 时间:2023-11-17 19:44
首先把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);
}
你可以试试看 行不行.
热心网友 时间:2023-11-17 19:45
this.password 中 hiddenLabel:true 这句话去掉