@refinitiv-ui/efx-grid 6.0.105 → 6.0.106

Sign up to get free protection for your applications and to get access to all the features.
@@ -25662,7 +25662,7 @@ Core_Core.prototype._hasPendingRowChange = false;
25662
25662
  * @return {string}
25663
25663
  */
25664
25664
  Core_Core.getVersion = function () {
25665
- return "5.1.106";
25665
+ return "5.1.107";
25666
25666
  };
25667
25667
  /** {@link ElementWrapper#dispose}
25668
25668
  * @override
@@ -30110,17 +30110,16 @@ Core_Core.prototype._onSectionDataChanged = function (e) {
30110
30110
  e["colIndex"] = c;
30111
30111
 
30112
30112
  for (let r = fromR; r < toR; ++r) {
30113
- if(hasDataView) {
30114
- let rowData = rowDataCollection[r];
30115
-
30113
+ let rowData = hasDataView ? rowDataCollection[r] : null;
30114
+ if(rowData) {
30116
30115
  e["rowData"] = rowData;
30117
30116
  e["rowId"] = rids[r];
30118
30117
  e["dataValue"] = rowData ? rowData[cid] : null;
30119
- }
30120
- e["rowIndex"] = r;
30121
- e["cell"] = section["getCell"](c, r, false); // Accessing cell by using bracket allows extenal object to mock Section
30118
+ e["rowIndex"] = r;
30119
+ e["cell"] = section["getCell"](c, r, false); // Accessing cell by using bracket allows extenal object to mock Section
30122
30120
 
30123
- handler(e);
30121
+ handler(e);
30122
+ }
30124
30123
  }
30125
30124
  }
30126
30125
  }