复选框'检查'事件

时间:2011-02-22 18:12:32

标签: extjs

以下是扩展类的initComponent:

this.checkBoxArray[0].on('check(this.checkBoxArray[0]', false), this.enableAllCheckboxes, this);

取消选中复选框后,它不会执行this.enableAllCheckboxes()。

2 个答案:

答案 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()添加到第二个参数

中的函数