@xuda.io/runtime-bundle 1.0.651 → 1.0.653
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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -13167,13 +13167,15 @@ func.UI.screen.fix_val_defaults = function (key, val) {
|
|
|
13167
13167
|
key === 'xu-render' &&
|
|
13168
13168
|
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
13169
13169
|
) {
|
|
13170
|
-
ret = 'Y'; // was ret = "N";
|
|
13170
|
+
// ret = 'Y'; // was ret = "N";
|
|
13171
|
+
ret = true;
|
|
13171
13172
|
}
|
|
13172
13173
|
if (
|
|
13173
13174
|
key === 'xu-show' &&
|
|
13174
13175
|
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
13175
13176
|
) {
|
|
13176
|
-
ret = 'Y';
|
|
13177
|
+
// ret = 'Y';
|
|
13178
|
+
ret = true;
|
|
13177
13179
|
}
|
|
13178
13180
|
return ret;
|
|
13179
13181
|
};
|
|
@@ -13362,7 +13364,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
13362
13364
|
$elm,
|
|
13363
13365
|
{
|
|
13364
13366
|
key: key,
|
|
13365
|
-
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(
|
|
13367
|
+
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
|
|
13366
13368
|
},
|
|
13367
13369
|
is_init,
|
|
13368
13370
|
refreshed_ds,
|
|
@@ -13386,7 +13388,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
13386
13388
|
$elm,
|
|
13387
13389
|
{
|
|
13388
13390
|
key: key,
|
|
13389
|
-
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(
|
|
13391
|
+
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
|
|
13390
13392
|
},
|
|
13391
13393
|
is_init,
|
|
13392
13394
|
refreshed_ds,
|
|
@@ -10889,13 +10889,15 @@ func.UI.screen.fix_val_defaults = function (key, val) {
|
|
|
10889
10889
|
key === 'xu-render' &&
|
|
10890
10890
|
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
10891
10891
|
) {
|
|
10892
|
-
ret = 'Y'; // was ret = "N";
|
|
10892
|
+
// ret = 'Y'; // was ret = "N";
|
|
10893
|
+
ret = true;
|
|
10893
10894
|
}
|
|
10894
10895
|
if (
|
|
10895
10896
|
key === 'xu-show' &&
|
|
10896
10897
|
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
10897
10898
|
) {
|
|
10898
|
-
ret = 'Y';
|
|
10899
|
+
// ret = 'Y';
|
|
10900
|
+
ret = true;
|
|
10899
10901
|
}
|
|
10900
10902
|
return ret;
|
|
10901
10903
|
};
|
|
@@ -11084,7 +11086,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
11084
11086
|
$elm,
|
|
11085
11087
|
{
|
|
11086
11088
|
key: key,
|
|
11087
|
-
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(
|
|
11089
|
+
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
|
|
11088
11090
|
},
|
|
11089
11091
|
is_init,
|
|
11090
11092
|
refreshed_ds,
|
|
@@ -11108,7 +11110,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
11108
11110
|
$elm,
|
|
11109
11111
|
{
|
|
11110
11112
|
key: key,
|
|
11111
|
-
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(
|
|
11113
|
+
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
|
|
11112
11114
|
},
|
|
11113
11115
|
is_init,
|
|
11114
11116
|
refreshed_ds,
|