@trudb/tru-common-lib 0.2.311 → 0.2.312
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.
|
@@ -6524,9 +6524,11 @@ class TruDataGridPkeyCellRenderer {
|
|
|
6524
6524
|
onMouseDown = (event) => {
|
|
6525
6525
|
};
|
|
6526
6526
|
onMouseUp = (event) => {
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
target.classList.
|
|
6527
|
+
if (!this.params.node.isSelected()) {
|
|
6528
|
+
let target = event.target.parentElement;
|
|
6529
|
+
if (target.classList.contains('ag-row-focus'))
|
|
6530
|
+
target.classList.remove('ag-row-focus');
|
|
6531
|
+
}
|
|
6530
6532
|
};
|
|
6531
6533
|
onCopy = (event) => {
|
|
6532
6534
|
let selectedRows = this.params.api.getSelectedRows();
|