@xuda.io/runtime-bundle 1.0.733 → 1.0.735
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.
|
@@ -31308,13 +31308,16 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31308
31308
|
if (!elem_val?.$elm?.data()?.xuAttributes) continue;
|
|
31309
31309
|
|
|
31310
31310
|
if (elem_val.attributes.includes('xu-exp:xu-render')) {
|
|
31311
|
-
|
|
31312
|
-
|
|
31311
|
+
try {
|
|
31312
|
+
var res = await func.expression.get(SESSION_ID, elem_val.$elm.data().xuAttributes['xu-exp:xu-render'], elem_val.$elm.data().xuData.paramsP.dsSessionP, 'UI Property EXP', elem_val.$elm.data().xuData.recordid);
|
|
31313
|
+
} catch (error) {
|
|
31314
|
+
debugger;
|
|
31315
|
+
}
|
|
31313
31316
|
var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
|
|
31314
31317
|
|
|
31315
|
-
if (!attr_value
|
|
31318
|
+
if (!attr_value && elem_val.$elm[0].tagName === 'XURENDER') continue; // bypass job
|
|
31316
31319
|
|
|
31317
|
-
if (attr_value
|
|
31320
|
+
if (attr_value && elem_val.$elm[0].tagName !== 'XURENDER') {
|
|
31318
31321
|
await add_execute_queue('execute_xu_all_attributes');
|
|
31319
31322
|
|
|
31320
31323
|
continue; // bypass render job
|