@trudb/tru-common-lib 0.0.608 → 0.0.609
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2986,9 +2986,10 @@ class TruDataGrid {
|
|
|
2986
2986
|
this.gridOptions.api.stopEditing();
|
|
2987
2987
|
let focusedCell = params.api.getFocusedCell();
|
|
2988
2988
|
if (isAltKey && (isArrowDown || isArrowUp)) {
|
|
2989
|
+
params.event.stopPropagation();
|
|
2989
2990
|
params.api.startEditingCell({
|
|
2990
2991
|
rowIndex: focusedCell?.rowIndex,
|
|
2991
|
-
colKey: focusedCell?.column
|
|
2992
|
+
colKey: focusedCell?.column,
|
|
2992
2993
|
});
|
|
2993
2994
|
return true;
|
|
2994
2995
|
}
|