@magic-xpa/engine 4.900.0-dev490.288 → 4.900.0-dev490.293

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.
@@ -19375,7 +19375,11 @@ class MgForm extends MgFormBase {
19375
19375
  this.GetDataview().setTopRecIdxModified(true);
19376
19376
  try {
19377
19377
  this._suffixDone = false;
19378
- await this.setCurrRowByDisplayLine(this.GetDataview().getCurrRecIdx() + size, true, false);
19378
+ let newDisplayLine = this.GetDataview().getCurrRecIdx() + size;
19379
+ if (unit === Constants.MOVE_UNIT_PAGE && this.isLineMode())
19380
+ if (newDisplayLine > this.GetDataview().getSize() - 1)
19381
+ visibleLine -= newDisplayLine - (this.GetDataview().getSize() - 1);
19382
+ await this.setCurrRowByDisplayLine(newDisplayLine, true, false);
19379
19383
  this.GetDataview().setTopRecIdxModified(false);
19380
19384
  await this.RefreshDisplay(Constants.TASK_REFRESH_FORM);
19381
19385
  }
@@ -29543,7 +29547,7 @@ class CommandsTable {
29543
29547
  }
29544
29548
  }
29545
29549
 
29546
- let CurrentClientVersion = '4.900.0-dev490.288';
29550
+ let CurrentClientVersion = '4.900.0-dev490.293';
29547
29551
 
29548
29552
  class ClientManager {
29549
29553
  constructor() {