@magic-xpa/engine 4.1200.0-dev4120.153 → 4.1200.0-dev4120.155
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.
@@ -12215,6 +12215,7 @@ class Operation {
|
|
12215
12215
|
_undo = true;
|
12216
12216
|
_isRoute = false;
|
12217
12217
|
_routerPath = null;
|
12218
|
+
_subformExp = null;
|
12218
12219
|
_originalRouterOutletName = null;
|
12219
12220
|
_routeParams = null;
|
12220
12221
|
constructor() {
|
@@ -12418,6 +12419,10 @@ class Operation {
|
|
12418
12419
|
case XMLConstants.MG_ATTR_ROUTER_PATH:
|
12419
12420
|
this._routerPath = XmlParser.unescape(valueStr);
|
12420
12421
|
break;
|
12422
|
+
case XMLConstants.MG_ATTR_SUBFORM_EXP:
|
12423
|
+
expId = XmlParser.getInt(valueStr);
|
12424
|
+
this._subformExp = taskRef.getExpById(expId);
|
12425
|
+
break;
|
12421
12426
|
default:
|
12422
12427
|
Logger.Instance.WriteExceptionToLogWithMsg("There is no such tag in Operation class. Insert case to Operation.initElements for " + attribute);
|
12423
12428
|
break;
|
@@ -12525,6 +12530,8 @@ class Operation {
|
|
12525
12530
|
await this.operServer(mprgCreator);
|
12526
12531
|
break;
|
12527
12532
|
case ConstInterface.MG_OPER_CALL:
|
12533
|
+
if (this._subformExp != null)
|
12534
|
+
this._subformCtrlName = await this._subformExp.evaluateWithResultTypeAndLength(StorageAttribute.ALPHA, 30);
|
12528
12535
|
if (this._publicName != null) {
|
12529
12536
|
this.operCallParallel();
|
12530
12537
|
}
|
@@ -39507,7 +39514,7 @@ class CommandsTable {
|
|
39507
39514
|
}
|
39508
39515
|
}
|
39509
39516
|
|
39510
|
-
let CurrentClientVersion = '4.1200.0-dev4120.
|
39517
|
+
let CurrentClientVersion = '4.1200.0-dev4120.155';
|
39511
39518
|
|
39512
39519
|
// @dynamic
|
39513
39520
|
class ClientManager {
|