@trudb/tru-common-lib 0.1.992 → 0.1.993

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.
@@ -5895,12 +5895,12 @@ class TruDataGridPkeyCellRenderer {
5895
5895
  event.preventDefault();
5896
5896
  };
5897
5897
  init(params) {
5898
- params.eGridCell.innerHTML = '';
5899
- let value = params.value;
5900
- if (params.value < 0)
5901
- value = 'NEW';
5902
- var content = document.createTextNode(value);
5903
- params.eGridCell.appendChild(content);
5898
+ //params.eGridCell.innerHTML = '';
5899
+ //let value = params.value;
5900
+ //if (params.value < 0)
5901
+ // value = 'NEW';
5902
+ //var content = document.createTextNode(value);
5903
+ //params.eGridCell.appendChild(content);
5904
5904
  params.eGridCell.addEventListener('contextmenu', this.onRightClick);
5905
5905
  }
5906
5906
  getGui() {