@trudb/tru-common-lib 0.2.32 → 0.2.34
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.
|
@@ -5950,9 +5950,9 @@ class TruDataGridPkeyCellRenderer {
|
|
|
5950
5950
|
onMouseUp = (event) => {
|
|
5951
5951
|
if (event.ctrlKey) {
|
|
5952
5952
|
if (this.params.node.isSelected())
|
|
5953
|
-
this.params.node.setSelected(false,
|
|
5953
|
+
this.params.node.setSelected(false, false);
|
|
5954
5954
|
else
|
|
5955
|
-
this.params.node.setSelected(true,
|
|
5955
|
+
this.params.node.setSelected(true, false);
|
|
5956
5956
|
}
|
|
5957
5957
|
else {
|
|
5958
5958
|
this.params.node.setSelected(true, true);
|
|
@@ -7072,11 +7072,6 @@ class TruDataGrid {
|
|
|
7072
7072
|
return 'Click search to display results.';
|
|
7073
7073
|
},
|
|
7074
7074
|
},
|
|
7075
|
-
onSelectionChanged: (params) => {
|
|
7076
|
-
let count = 0;
|
|
7077
|
-
count = this.api?.getSelectedRows().length;
|
|
7078
|
-
this.selectedRowCount = 'Selected: ' + count;
|
|
7079
|
-
},
|
|
7080
7075
|
onRowDataUpdated: () => {
|
|
7081
7076
|
this.config.viewMenuConfig.entities = this.getRowData();
|
|
7082
7077
|
this.config.viewMenuConfig.actionRefs = this.getRefs();
|