@trudb/tru-common-lib 0.2.28 → 0.2.30

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.
@@ -7425,16 +7425,16 @@ class TruDataGrid {
7425
7425
  else {
7426
7426
  if (cellData.event.ctrlKey) {
7427
7427
  if (this.rowSelectedOnMousedown)
7428
- cellData.node.setSelected(false);
7428
+ cellData.node.setSelected(false, false, true);
7429
7429
  else
7430
- cellData.node.setSelected(true);
7430
+ cellData.node.setSelected(true, false, true);
7431
7431
  }
7432
7432
  else if (cellData.event.shiftKey) {
7433
7433
  let focusedId = this.rowFocuedOnMousedown.id;
7434
7434
  }
7435
7435
  else {
7436
7436
  cellData.api.deselectAll();
7437
- cellData.node.setSelected(true);
7437
+ cellData.node.setSelected(true, false, true);
7438
7438
  }
7439
7439
  }
7440
7440
  };