@magic-xpa/engine 4.1100.0-dev4110.184 → 4.1100.0-dev4110.187

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.
@@ -17813,10 +17813,12 @@ class DataView extends DataViewBase {
17813
17813
  await this.fetchChunkFromServer(CHUNK_DV_BOTTOM, doSuffix);
17814
17814
  if (!this._includesLast)
17815
17815
  throw new RecordOutOfDataViewException(RecordOutOfDataViewException_ExceptionType.BOTTOM);
17816
- let form = this._task.getForm();
17817
- if (form != null) {
17818
- while (!this._includesFirst && form.getRowsInPage() >= this.getSize()) {
17819
- await this.fetchChunkFromServer(CHUNK_CACHE_PREV, false);
17816
+ if (this.getTask().isTableWithAbsolutesScrollbar()) {
17817
+ let form = this._task.getForm();
17818
+ if (form != null) {
17819
+ while (!this._includesFirst && form.getRowsInPage() >= this.getSize()) {
17820
+ await this.fetchChunkFromServer(CHUNK_CACHE_PREV, false);
17821
+ }
17820
17822
  }
17821
17823
  }
17822
17824
  await this.setCurrRecByIdx(newIdx, false, ignoreCurrRec, compute, SET_DISPLAYLINE_BY_DV);
@@ -29563,7 +29565,7 @@ class CommandsTable {
29563
29565
  }
29564
29566
  }
29565
29567
 
29566
- let CurrentClientVersion = '4.1100.0-dev4110.184';
29568
+ let CurrentClientVersion = '4.1100.0-dev4110.187';
29567
29569
 
29568
29570
  class ClientManager {
29569
29571
  static _instance = null;