@syncfusion/ej2-treegrid 30.1.38 → 30.2.4

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.
@@ -10672,7 +10672,7 @@ class ExcelExport {
10672
10672
  this.isCollapsedStatePersist = excelExportProperties.isCollapsedStatePersist;
10673
10673
  }
10674
10674
  if (!isNullOrUndefined(excelExportProperties)) {
10675
- if (!isNullOrUndefined(excelExportProperties.dataSource) && !excelExportProperties.dataSource['dataSource']) {
10675
+ if (!this.isLocal() && !isNullOrUndefined(excelExportProperties.dataSource) && !excelExportProperties.dataSource['dataSource']) {
10676
10676
  return this.parent.grid.excelExportModule.Map(this.parent.grid, excelExportProperties, isMultipleExport, workbook, isCsv, isBlob);
10677
10677
  }
10678
10678
  if (excelExportProperties.exportType === 'CurrentPage') {
@@ -14485,7 +14485,7 @@ class VirtualTreeContentRenderer extends VirtualContentRenderer {
14485
14485
  && !this.parent.dataSource.dataSource.offline && this.parent.dataSource.dataSource.url !== ''))) {
14486
14486
  const viewInfo = this.currentInfo = getValue('getInfoFromView', this).apply(this, [scrollArgs.direction, info, scrollArgs.offset]);
14487
14487
  this.previousInfo = viewInfo;
14488
- if (this.prevInfo && ((info.axis === 'Y' && this.prevInfo.blockIndexes.toString() === viewInfo.blockIndexes.toString())
14488
+ if (this.prevInfo && (isRemoteData(this.parent.root) && viewInfo.event !== 'model-changed') && ((info.axis === 'Y' && this.prevInfo.blockIndexes.toString() === viewInfo.blockIndexes.toString())
14489
14489
  || ((info.axis === 'X' && this.prevInfo.columnIndexes.toString() === viewInfo.columnIndexes.toString())
14490
14490
  || (this.parent.isFrozenGrid() && this.parent.getVisibleFrozenLeftCount() >= viewInfo.columnIndexes[0]
14491
14491
  && this.prevInfo.columnIndexes.toString().includes(viewInfo.columnIndexes.toString()))))) {