fix(rowmanager): Fire onCheckRow event on checkAll

When checkAll is triggered via API or UI input, onCheckRow event fires

Closes #38
This commit is contained in:
Faris Ansari 2018-07-09 17:35:59 +05:30
parent 78666f8ab2
commit f9714673b4

View File

@ -123,6 +123,7 @@ export default class RowManager {
// highlight all // highlight all
this.highlightAll(toggle); this.highlightAll(toggle);
this.showCheckStatus(); this.showCheckStatus();
this.fireEvent('onCheckRow');
} }
showCheckStatus() { showCheckStatus() {