@magic-xpa/engine 4.1200.0-dev4120.158 → 4.1200.0-dev4120.159
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.
@@ -12530,8 +12530,17 @@ class Operation {
|
|
12530
12530
|
await this.operServer(mprgCreator);
|
12531
12531
|
break;
|
12532
12532
|
case ConstInterface.MG_OPER_CALL:
|
12533
|
-
if (this._subformExp != null)
|
12534
|
-
|
12533
|
+
if (this._subformExp != null) {
|
12534
|
+
const subformName = await this._subformExp.evaluateWithResultTypeAndLength(StorageAttribute.ALPHA, 30);
|
12535
|
+
if (!subformName || subformName.length > 30) {
|
12536
|
+
const messageKey = !subformName ? MsgInterface.STR_ERR_BLANK_SUBFORM_NAME : MsgInterface.STR_ERR_SUBFORM_NAME_EXCEEDS_LIMIT;
|
12537
|
+
let message = LanguageData.Instance.getConstMessage(messageKey);
|
12538
|
+
message = LanguageData.Instance.translate(message);
|
12539
|
+
this._task.WriteToMessagePane(message);
|
12540
|
+
return false;
|
12541
|
+
}
|
12542
|
+
this._subformCtrlName = subformName;
|
12543
|
+
}
|
12535
12544
|
if (this._publicName != null) {
|
12536
12545
|
this.operCallParallel();
|
12537
12546
|
}
|
@@ -39535,7 +39544,7 @@ class CommandsTable {
|
|
39535
39544
|
}
|
39536
39545
|
}
|
39537
39546
|
|
39538
|
-
let CurrentClientVersion = '4.1200.0-dev4120.
|
39547
|
+
let CurrentClientVersion = '4.1200.0-dev4120.159';
|
39539
39548
|
|
39540
39549
|
// @dynamic
|
39541
39550
|
class ClientManager {
|