@magic-xpa/engine 4.1000.0-dev4100.405 → 4.1000.0-dev4100.408

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.
@@ -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
- async createForm() {
20315
- await super.createForm();
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.405';
29549
+ let CurrentClientVersion = '4.1000.0-dev4100.408';
29546
29550
 
29547
29551
  class ClientManager {
29548
29552
  static get Instance() {