@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.
@@ -14441,10 +14441,6 @@ class ExpressionEvaluator extends GuiExpressionEvaluator {
14441
14441
  let form = task.getForm();
14442
14442
  let args = this.params2arguments(expVal, 0, expVal.length);
14443
14443
  if (!isNullOrUndefined(args)) {
14444
- if (task.isFirstRecordCycle()) {
14445
- Commands.invoke();
14446
- yield Thread.Sleep(10);
14447
- }
14448
14444
  resVal.StrVal = Commands.addCallJS(form, form.UniqueName, methodName, args);
14449
14445
  resVal.Attr = StorageAttribute.ALPHA;
14450
14446
  }
@@ -20829,8 +20825,13 @@ class MgForm extends MgFormBase {
20829
20825
  }
20830
20826
  }
20831
20827
  createForm() {
20832
- super.createForm();
20833
- MgForm.CreatedForms.add(this);
20828
+ const _super = Object.create(null, {
20829
+ createForm: { get: () => super.createForm }
20830
+ });
20831
+ return __awaiter(this, void 0, void 0, function* () {
20832
+ yield _super.createForm.call(this);
20833
+ MgForm.CreatedForms.add(this);
20834
+ });
20834
20835
  }
20835
20836
  UpdateStatusBar() {
20836
20837
  }
@@ -23743,6 +23744,7 @@ class Task extends TaskBase {
23743
23744
  yield subTask.doFirstRecordCycle();
23744
23745
  }
23745
23746
  }
23747
+ yield AccessHelper.eventsManager.handleInternalEventWithTask(this, InternalInterface.MG_ACT_REC_SUFFIX);
23746
23748
  }
23747
23749
  }
23748
23750
  this.SubformExecMode = Task_SubformExecModeEnum.SET_FOCUS;
@@ -30361,7 +30363,7 @@ class CommandsTable {
30361
30363
  }
30362
30364
  }
30363
30365
 
30364
- let CurrentClientVersion = '4.1100.0-dev4110.31';
30366
+ let CurrentClientVersion = '4.1100.0-dev4110.35';
30365
30367
 
30366
30368
  class ClientManager {
30367
30369
  static get Instance() {