@trudb/tru-common-lib 0.2.294 → 0.2.295
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.
|
@@ -8147,10 +8147,14 @@ class TruDataGrid {
|
|
|
8147
8147
|
else {
|
|
8148
8148
|
if (!rowData.event.shiftKey) {
|
|
8149
8149
|
if (rowData.event.ctrlKey) {
|
|
8150
|
-
if (this.rowSelectedOnMousedown)
|
|
8150
|
+
if (this.rowSelectedOnMousedown) {
|
|
8151
8151
|
rowData.node.setSelected(false);
|
|
8152
|
-
|
|
8152
|
+
if (!target.classList.contains('ag-cell-focus'))
|
|
8153
|
+
target.classList.remove('ag-cell-focus');
|
|
8154
|
+
}
|
|
8155
|
+
else {
|
|
8153
8156
|
rowData.node.setSelected(true);
|
|
8157
|
+
}
|
|
8154
8158
|
}
|
|
8155
8159
|
else {
|
|
8156
8160
|
rowData.api.deselectAll();
|