We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f126415 commit 6f713dbCopy full SHA for 6f713db
2 files changed
src/selection/grid/RowModel.mjs
@@ -39,7 +39,7 @@ class RowModel extends BaseModel {
39
destroy(...args) {
40
let me = this;
41
42
- me.view.un('rowClick', me.onRowClick, me);
+ me.view.gridContainer.un('rowClick', me.onRowClick, me);
43
44
super.destroy(...args)
45
}
src/selection/table/RowModel.mjs
@@ -30,7 +30,7 @@ class RowModel extends BaseModel {
30
addDomListener() {
31
32
33
- me.view.on('rowClick', me.onRowClick, me)
+ me.view.parent.on('rowClick', me.onRowClick, me)
34
35
36
/**
+ me.view.parent.un('rowClick', me.onRowClick, me);
0 commit comments