@magic-xpa/engine 4.1100.0-dev4110.31 → 4.1100.0-dev4110.34

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.31';
29545
+ let CurrentClientVersion = '4.1100.0-dev4110.34';
29549
29546
 
29550
29547
  class ClientManager {
29551
29548
  static get Instance() {