首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

Ext 表单隐藏 和显示 根据下拉框选择不同的值 显示不同的文本框 只显示了文本框没有显示fieldLabel

发布网友 发布时间: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 这句话去掉

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com