@magic-xpa/engine 4.1100.0-dev4110.31 → 4.1100.0-dev4110.35
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/exp/ExpressionEvaluator.mjs +2 -6
- package/esm2020/src/gui/MgForm.mjs +3 -3
- package/esm2020/src/tasks/Task.mjs +2 -1
- package/fesm2015/magic-xpa-engine.mjs +9 -7
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +4 -7
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/gui/MgForm.d.ts +1 -1
@@ -14165,10 +14165,6 @@ class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
14165
14165
|
let form = task.getForm();
|
14166
14166
|
let args = this.params2arguments(expVal, 0, expVal.length);
|
14167
14167
|
if (!isNullOrUndefined(args)) {
|
14168
|
-
if (task.isFirstRecordCycle()) {
|
14169
|
-
Commands.invoke();
|
14170
|
-
await Thread.Sleep(10);
|
14171
|
-
}
|
14172
14168
|
resVal.StrVal = Commands.addCallJS(form, form.UniqueName, methodName, args);
|
14173
14169
|
resVal.Attr = StorageAttribute.ALPHA;
|
14174
14170
|
}
|
@@ -20315,8 +20311,8 @@ class MgForm extends MgFormBase {
|
|
20315
20311
|
}
|
20316
20312
|
}
|
20317
20313
|
}
|
20318
|
-
createForm() {
|
20319
|
-
super.createForm();
|
20314
|
+
async createForm() {
|
20315
|
+
await super.createForm();
|
20320
20316
|
MgForm.CreatedForms.add(this);
|
20321
20317
|
}
|
20322
20318
|
UpdateStatusBar() {
|
@@ -23158,6 +23154,7 @@ class Task extends TaskBase {
|
|
23158
23154
|
await subTask.doFirstRecordCycle();
|
23159
23155
|
}
|
23160
23156
|
}
|
23157
|
+
await AccessHelper.eventsManager.handleInternalEventWithTask(this, InternalInterface.MG_ACT_REC_SUFFIX);
|
23161
23158
|
}
|
23162
23159
|
}
|
23163
23160
|
this.SubformExecMode = Task_SubformExecModeEnum.SET_FOCUS;
|
@@ -29545,7 +29542,7 @@ class CommandsTable {
|
|
29545
29542
|
}
|
29546
29543
|
}
|
29547
29544
|
|
29548
|
-
let CurrentClientVersion = '4.1100.0-dev4110.
|
29545
|
+
let CurrentClientVersion = '4.1100.0-dev4110.35';
|
29549
29546
|
|
29550
29547
|
class ClientManager {
|
29551
29548
|
static get Instance() {
|