@magic-xpa/gui 4.1200.0-ec.131.0 → 4.1200.0
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.
|
@@ -2627,6 +2627,7 @@ var PropInterface;
|
|
|
2627
2627
|
PropInterface[PropInterface["PROP_TYPE_SERVER_READ_AHEAD"] = 736] = "PROP_TYPE_SERVER_READ_AHEAD";
|
|
2628
2628
|
PropInterface[PropInterface["PROP_TYPE_AUTO_COMPLETE_MODE_WC"] = 740] = "PROP_TYPE_AUTO_COMPLETE_MODE_WC";
|
|
2629
2629
|
PropInterface[PropInterface["PROP_TYPE_PARK_FIRST_ON"] = 743] = "PROP_TYPE_PARK_FIRST_ON";
|
|
2630
|
+
PropInterface[PropInterface["PROP_TYPE_ON_DEMAND"] = 747] = "PROP_TYPE_ON_DEMAND";
|
|
2630
2631
|
})(PropInterface || (PropInterface = {}));
|
|
2631
2632
|
|
|
2632
2633
|
class GuiEnvironment {
|
|
@@ -11749,6 +11750,7 @@ class PropDefaults {
|
|
|
11749
11750
|
case PropInterface.PROP_TYPE_FILL_WIDTH:
|
|
11750
11751
|
case PropInterface.PROP_TYPE_MULTI_COLUMN_DISPLAY:
|
|
11751
11752
|
case PropInterface.PROP_TYPE_AUTO_COMPLETE_MODE_WC:
|
|
11753
|
+
case PropInterface.PROP_TYPE_ON_DEMAND:
|
|
11752
11754
|
val = "0"; // no boolean
|
|
11753
11755
|
break;
|
|
11754
11756
|
case PropInterface.PROP_TYPE_SYSTEM_MENU:
|
|
@@ -12234,6 +12236,7 @@ class Property {
|
|
|
12234
12236
|
case PropInterface.PROP_TYPE_DEFAULT_OUTLET:
|
|
12235
12237
|
case PropInterface.PROP_TYPE_SERVER_READ_AHEAD:
|
|
12236
12238
|
case PropInterface.PROP_TYPE_AUTO_COMPLETE_MODE_WC:
|
|
12239
|
+
case PropInterface.PROP_TYPE_ON_DEMAND:
|
|
12237
12240
|
this._dataType = StorageAttribute.BOOLEAN;
|
|
12238
12241
|
break;
|
|
12239
12242
|
case PropInterface.PROP_TYPE_IMAGE_FILENAME:
|
|
@@ -12525,6 +12528,7 @@ class Property {
|
|
|
12525
12528
|
case PropInterface.PROP_TYPE_BEFORE_900_VERSION:
|
|
12526
12529
|
case PropInterface.PROP_TYPE_REFRESH_WHEN_HIDDEN:
|
|
12527
12530
|
case PropInterface.PROP_TYPE_SERVER_READ_AHEAD:
|
|
12531
|
+
case PropInterface.PROP_TYPE_ON_DEMAND:
|
|
12528
12532
|
skip = true;
|
|
12529
12533
|
break;
|
|
12530
12534
|
case PropInterface.PROP_TYPE_BUTTON_STYLE:
|
|
@@ -15880,6 +15884,13 @@ class MgControlBase extends GuiControlPropertyAdapter {
|
|
|
15880
15884
|
return result;
|
|
15881
15885
|
}
|
|
15882
15886
|
/// <summary>
|
|
15887
|
+
/// returns true if edit control's on demand property is true.
|
|
15888
|
+
/// </summary>
|
|
15889
|
+
/// <returns></returns>
|
|
15890
|
+
isOnDemandSelectionList() {
|
|
15891
|
+
return this.GetComputedBooleanProperty(PropInterface.PROP_TYPE_ON_DEMAND, false);
|
|
15892
|
+
}
|
|
15893
|
+
/// <summary>
|
|
15883
15894
|
/// returns the current dc values of this data control from the current record
|
|
15884
15895
|
/// </summary>
|
|
15885
15896
|
getDcVals() {
|
|
@@ -20114,6 +20125,7 @@ class ExpressionInterface {
|
|
|
20114
20125
|
static EXP_OP_GET_COOKIE = 702;
|
|
20115
20126
|
static EXP_OP_DELETE_COOKIE = 703;
|
|
20116
20127
|
static EXP_OP_ROUTEGET = 705;
|
|
20128
|
+
static EXP_OP_HASH = 716;
|
|
20117
20129
|
constructor() {
|
|
20118
20130
|
}
|
|
20119
20131
|
}
|