-2

我需要知道如何通过代码启用/禁用按钮;

到目前为止我的工作;

             var button= Ext.ComponentQuery.query('#id> #button1')[0];
button.disable();

我也试过;

button.setDisable(true);

没有任何效果。解决方案是什么?

4

2 回答 2

0

你能隐藏按钮吗?
button.Visible = false;

于 2012-09-28T13:06:53.360 回答
0
button.set({disabled: 'disabled'});
于 2012-09-28T13:11:01.000 回答