我在复合字段中使用两个文本字段(登录名和密码)和按钮, 单击按钮时禁用复合字段并显示另一个复合字段,如bellow
txtPwd1.getEl().up('.x-form-item').setDisplayed(true);txtPwd.getEl().up('.x-form-item').setDisplayed(false);
但是在IE中工作只能在firefox和chrome中使用......
请帮帮我
提前致谢
答案 0 :(得分:0)
它不起作用的原因是你应该使用setVisible方法。我认为setDisplayed在IE中工作的原因是它必须出于某种原因尝试重新渲染面板。不需要为它渲染setVisible以使该字段不可见。