diff --git a/src/features/cellnav/js/cellnav.js b/src/features/cellnav/js/cellnav.js index 2d32cc03b2..1fcc45774d 100644 --- a/src/features/cellnav/js/cellnav.js +++ b/src/features/cellnav/js/cellnav.js @@ -547,7 +547,7 @@ // Broadcast the navigation if (gridRow !== null && gridCol !== null) { - grid.cellNav.broadcastCellNav(rowCol); + grid.cellNav.broadcastCellNav(rowCol, null, null); } }); diff --git a/src/features/edit/js/gridEdit.js b/src/features/edit/js/gridEdit.js index 1bcacce67b..da360c24c4 100644 --- a/src/features/edit/js/gridEdit.js +++ b/src/features/edit/js/gridEdit.js @@ -536,7 +536,7 @@ if ($scope.col.colDef.enableCellEditOnFocus) { // Don't begin edit if the cell hasn't changed if (newRowCol.row === $scope.row && newRowCol.col === $scope.col && - (!evt || (evt && (evt.type === 'click' || evt.type === 'keydown')))) { + (evt === null || (evt && (evt.type === 'click' || evt.type === 'keydown')))) { $timeout(function() { beginEdit(evt); });