Skip to content

Commit

Permalink
fix(event): remove e.stopImmediatePropagation to fix issue #60
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jun 1, 2018
1 parent 17db907 commit 2c2c770
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export class GridEventService {

// finally call up the Slick.column.onCellChanges.... function
column.onCellChange(returnedArgs);
// e.stopImmediatePropagation();
}
});
}
Expand All @@ -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();
}
});
}
Expand Down

0 comments on commit 2c2c770

Please sign in to comment.