@trudb/tru-common-lib 0.1.984 → 0.1.985

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.
@@ -5849,6 +5849,7 @@ class TruDataGridCellRenderer {
5849
5849
  e.target.classList.contains('invalid-flag') ? this.validationContainer.classList.toggle('show') : this.validationContainer.classList.remove('show');
5850
5850
  };
5851
5851
  onRightClick = (event) => {
5852
+ event.stopPropagation();
5852
5853
  event.preventDefault();
5853
5854
  alert('Test');
5854
5855
  };
@@ -7394,7 +7395,7 @@ class TruDataGrid {
7394
7395
  this.validationDialog.destroy();
7395
7396
  }
7396
7397
  onRightClick(event) {
7397
- event.preventDefault();
7398
+ //event.preventDefault();
7398
7399
  }
7399
7400
  onSearch = (setupQuery) => {
7400
7401
  this.firstSearchRan = true;