@magic-xpa/engine 4.1000.0-dev4100.405 → 4.1000.0-dev4100.406
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/README.md +7 -7
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/exp/ExpressionEvaluator.mjs +6 -2
- package/esm2020/src/gui/MgForm.mjs +3 -3
- package/esm2020/src/util/cookie.service.mjs +1 -1
- package/fesm2015/magic-xpa-engine.mjs +7 -8
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +7 -3
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/gui/MgForm.d.ts +1 -1
@@ -14165,6 +14165,10 @@ 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
|
+
}
|
14168
14172
|
resVal.StrVal = Commands.addCallJS(form, form.UniqueName, methodName, args);
|
14169
14173
|
resVal.Attr = StorageAttribute.ALPHA;
|
14170
14174
|
}
|
@@ -20311,8 +20315,8 @@ class MgForm extends MgFormBase {
|
|
20311
20315
|
}
|
20312
20316
|
}
|
20313
20317
|
}
|
20314
|
-
|
20315
|
-
|
20318
|
+
createForm() {
|
20319
|
+
super.createForm();
|
20316
20320
|
MgForm.CreatedForms.add(this);
|
20317
20321
|
}
|
20318
20322
|
UpdateStatusBar() {
|
@@ -29542,7 +29546,7 @@ class CommandsTable {
|
|
29542
29546
|
}
|
29543
29547
|
}
|
29544
29548
|
|
29545
|
-
let CurrentClientVersion = '4.1000.0-dev4100.
|
29549
|
+
let CurrentClientVersion = '4.1000.0-dev4100.406';
|
29546
29550
|
|
29547
29551
|
class ClientManager {
|
29548
29552
|
static get Instance() {
|