@magic-xpa/engine 4.900.0-dev490.293 → 4.900.0-dev490.296
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.
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/gui/MgForm.mjs +3 -6
- package/fesm2015/magic-xpa-engine.mjs +3 -6
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -6
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -19375,11 +19375,7 @@ class MgForm extends MgFormBase {
|
|
|
19375
19375
|
this.GetDataview().setTopRecIdxModified(true);
|
|
19376
19376
|
try {
|
|
19377
19377
|
this._suffixDone = false;
|
|
19378
|
-
|
|
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);
|
|
19378
|
+
await this.setCurrRowByDisplayLine(this.GetDataview().getCurrRecIdx() + size, true, false);
|
|
19383
19379
|
this.GetDataview().setTopRecIdxModified(false);
|
|
19384
19380
|
await this.RefreshDisplay(Constants.TASK_REFRESH_FORM);
|
|
19385
19381
|
}
|
|
@@ -19419,6 +19415,7 @@ class MgForm extends MgFormBase {
|
|
|
19419
19415
|
try {
|
|
19420
19416
|
await this.RefreshDisplay(Constants.TASK_REFRESH_FORM);
|
|
19421
19417
|
await this.setCurrRowByDisplayLine(this.GetDataview().getTopRecIdx() + this.getLastValidRow(), false, true);
|
|
19418
|
+
visibleLine = this.getLastValidRow();
|
|
19422
19419
|
}
|
|
19423
19420
|
catch (Exception) {
|
|
19424
19421
|
}
|
|
@@ -29547,7 +29544,7 @@ class CommandsTable {
|
|
|
29547
29544
|
}
|
|
29548
29545
|
}
|
|
29549
29546
|
|
|
29550
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
29547
|
+
let CurrentClientVersion = '4.900.0-dev490.296';
|
|
29551
29548
|
|
|
29552
29549
|
class ClientManager {
|
|
29553
29550
|
constructor() {
|