@trudb/tru-common-lib 0.1.988 → 0.1.989

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.
@@ -7080,7 +7080,7 @@ class TruDataGrid {
7080
7080
  };
7081
7081
  getRefs = () => {
7082
7082
  let rowNodes = [];
7083
- this.api?.forEachNode((rowNode, index) => {
7083
+ this.api?.forEachNodeAfterFilter((rowNode, index) => {
7084
7084
  rowNodes.push(rowNode);
7085
7085
  });
7086
7086
  let refs = _.map(rowNodes, (rowNode) => { return rowNode.data.$entity[this.config.resultConfig.entityType.name + 'Ref']; });
@@ -7088,7 +7088,7 @@ class TruDataGrid {
7088
7088
  };
7089
7089
  getRowData = () => {
7090
7090
  let data = [];
7091
- this.api?.forEachNode((rowNode) => {
7091
+ this.api?.forEachNodeAfterFilter((rowNode) => {
7092
7092
  data.push(rowNode.data.$entity);
7093
7093
  });
7094
7094
  return data;