From 2c2c77003f280be25607830c1cc511e674733ed6 Mon Sep 17 00:00:00 2001 From: Ghislain B Date: Fri, 1 Jun 2018 00:05:55 -0400 Subject: [PATCH] fix(event): remove e.stopImmediatePropagation to fix issue #60 --- .../src/aurelia-slickgrid/services/gridEvent.service.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/aurelia-slickgrid/src/aurelia-slickgrid/services/gridEvent.service.ts b/aurelia-slickgrid/src/aurelia-slickgrid/services/gridEvent.service.ts index 634955d89..5a754b92f 100644 --- a/aurelia-slickgrid/src/aurelia-slickgrid/services/gridEvent.service.ts +++ b/aurelia-slickgrid/src/aurelia-slickgrid/services/gridEvent.service.ts @@ -32,7 +32,6 @@ export class GridEventService { // finally call up the Slick.column.onCellChanges.... function column.onCellChange(returnedArgs); - // e.stopImmediatePropagation(); } }); } @@ -59,13 +58,6 @@ export class GridEventService { // finally call up the Slick.column.onCellClick.... function column.onCellClick(returnedArgs); - e.stopImmediatePropagation(); - } - - // stop the click event bubbling - // NOTE: We don't want to stop bubbling when doing an input edit, if we do the autoEdit which has intent of doing singleClick edit will become doubleClick edit - if (grid.getOptions && !grid.getOptions().autoEdit) { - // e.stopImmediatePropagation(); } }); }