@trudb/tru-common-lib 0.0.542 → 0.0.543
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.
|
@@ -2756,11 +2756,13 @@ class TruDataGrid {
|
|
|
2756
2756
|
if (key.code === 'Space') {
|
|
2757
2757
|
key.preventDefault();
|
|
2758
2758
|
key.stopPropagation();
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2759
|
+
if (!event.colDef.cellRenderer) {
|
|
2760
|
+
this.gridOptions.api?.startEditingCell({
|
|
2761
|
+
rowIndex: event.rowIndex,
|
|
2762
|
+
colKey: event.column.getColId(),
|
|
2763
|
+
key: key.code
|
|
2764
|
+
});
|
|
2765
|
+
}
|
|
2764
2766
|
}
|
|
2765
2767
|
};
|
|
2766
2768
|
this.onSearch = (setupQuery) => {
|