以下是扩展类的initComponent:
this.checkBoxArray[0].on('check(this.checkBoxArray[0]', false), this.enableAllCheckboxes, this);
取消选中复选框后,它不会执行this.enableAllCheckboxes()。
答案 0 :(得分:2)
您的代码应该是......
ExtJS 3.x:
this.checkBoxArray[0].on('check', this.enableAllCheckboxes, this);
ExtJS 4.x:
this.checkBoxArray[0].on('change', this.enableAllCheckboxes, this);
答案 1 :(得分:-2)
将Add()添加到第二个参数
中的函数