@xuda.io/runtime-bundle 1.0.1077 → 1.0.1079
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.
|
@@ -31462,7 +31462,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31462
31462
|
}
|
|
31463
31463
|
|
|
31464
31464
|
if (glb.new_xu_render) {
|
|
31465
|
-
if (attr === 'xu-exp:xu-render'
|
|
31465
|
+
if (attr === 'xu-exp:xu-render') {
|
|
31466
|
+
//|| attr === 'xu-render'
|
|
31466
31467
|
for await (const [key, val] of Object.entries(_$elem)) {
|
|
31467
31468
|
if (key === 'length') break;
|
|
31468
31469
|
if ($(val).data().xuData.node) {
|
|
@@ -31474,7 +31475,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31474
31475
|
parent_element_ui_id;
|
|
31475
31476
|
const elem_key = node.xu_render_xu_ui_id;
|
|
31476
31477
|
const elem_val = { attributes: [attr], $elm: node_data.$div };
|
|
31477
|
-
if (!
|
|
31478
|
+
if (!elem_val.$elm.data()?.xuData) continue;
|
|
31478
31479
|
elem_val.$elm.data().xuData.parent_element_ui_id = $(val).attr('xu-ui-id');
|
|
31479
31480
|
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);
|
|
31480
31481
|
|