@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.
@@ -19831,7 +19831,11 @@ class MgForm extends MgFormBase {
19831
19831
  this.GetDataview().setTopRecIdxModified(true);
19832
19832
  try {
19833
19833
  this._suffixDone = false;
19834
- yield this.setCurrRowByDisplayLine(this.GetDataview().getCurrRecIdx() + size, true, false);
19834
+ let newDisplayLine = this.GetDataview().getCurrRecIdx() + size;
19835
+ if (unit === Constants.MOVE_UNIT_PAGE && this.isLineMode())
19836
+ if (newDisplayLine > this.GetDataview().getSize() - 1)
19837
+ visibleLine -= newDisplayLine - (this.GetDataview().getSize() - 1);
19838
+ yield this.setCurrRowByDisplayLine(newDisplayLine, true, false);
19835
19839
  this.GetDataview().setTopRecIdxModified(false);
19836
19840
  yield this.RefreshDisplay(Constants.TASK_REFRESH_FORM);
19837
19841
  }
@@ -30388,7 +30392,7 @@ class CommandsTable {
30388
30392
  }
30389
30393
  }
30390
30394
 
30391
- let CurrentClientVersion = '4.900.0-dev490.288';
30395
+ let CurrentClientVersion = '4.900.0-dev490.293';
30392
30396
 
30393
30397
  class ClientManager {
30394
30398
  constructor() {