@magic-xpa/engine 4.1000.0-dev4100.134 → 4.1000.0-dev4100.135
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 -22
- package/fesm2015/magic-xpa-engine.mjs +2 -25
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +2 -21
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/gui/MgForm.d.ts +1 -3
|
@@ -19689,23 +19689,9 @@ class MgForm extends MgFormBase {
|
|
|
19689
19689
|
dv = this._task.DataView;
|
|
19690
19690
|
return (dv);
|
|
19691
19691
|
}
|
|
19692
|
-
moveInView(unit, direction
|
|
19693
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
19694
|
-
if (isNullOrUndefined(returnToCtrl))
|
|
19695
|
-
yield this.moveInView_0(unit, direction);
|
|
19696
|
-
else
|
|
19697
|
-
yield this.moveInView_1(unit, direction, returnToCtrl);
|
|
19698
|
-
});
|
|
19699
|
-
}
|
|
19700
|
-
moveInView_0(unit, direction) {
|
|
19701
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
19702
|
-
yield this.moveInView(unit, direction, true);
|
|
19703
|
-
});
|
|
19704
|
-
}
|
|
19705
|
-
moveInView_1(unit, direction, returnToCtrl) {
|
|
19692
|
+
moveInView(unit, direction) {
|
|
19706
19693
|
return __awaiter(this, void 0, void 0, function* () {
|
|
19707
19694
|
let oldRecId = Int32.MinValue;
|
|
19708
|
-
let lastParkedCtrl;
|
|
19709
19695
|
let currRec = this.GetDataview().getCurrRec();
|
|
19710
19696
|
let oldTaskMode = ' ';
|
|
19711
19697
|
let returnToVisibleLine = false;
|
|
@@ -19960,15 +19946,6 @@ class MgForm extends MgFormBase {
|
|
|
19960
19946
|
else
|
|
19961
19947
|
this.SetTableTopIndex();
|
|
19962
19948
|
yield AccessHelper.eventsManager.handleInternalEventWithTask(this._task, InternalInterface.MG_ACT_REC_PREFIX);
|
|
19963
|
-
if (returnToCtrl) {
|
|
19964
|
-
lastParkedCtrl = this._task.getLastParkedCtrl();
|
|
19965
|
-
if (lastParkedCtrl != null) {
|
|
19966
|
-
let cursorMoved = yield lastParkedCtrl.invoke();
|
|
19967
|
-
if (!cursorMoved) {
|
|
19968
|
-
yield AccessHelper.eventsManager.HandleNonParkableControls(this._task);
|
|
19969
|
-
}
|
|
19970
|
-
}
|
|
19971
|
-
}
|
|
19972
19949
|
}
|
|
19973
19950
|
catch (e) {
|
|
19974
19951
|
if (e instanceof RecordOutOfDataViewException) {
|
|
@@ -30358,7 +30335,7 @@ class CommandsTable {
|
|
|
30358
30335
|
}
|
|
30359
30336
|
}
|
|
30360
30337
|
|
|
30361
|
-
let CurrentClientVersion = '4.1000.0-dev4100.
|
|
30338
|
+
let CurrentClientVersion = '4.1000.0-dev4100.135';
|
|
30362
30339
|
|
|
30363
30340
|
class ClientManager {
|
|
30364
30341
|
static get Instance() {
|