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(); } }); }