@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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -11778,7 +11778,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11778
11778
|
}
|
|
11779
11779
|
|
|
11780
11780
|
if (glb.new_xu_render) {
|
|
11781
|
-
if (attr === 'xu-exp:xu-render'
|
|
11781
|
+
if (attr === 'xu-exp:xu-render') {
|
|
11782
|
+
//|| attr === 'xu-render'
|
|
11782
11783
|
for await (const [key, val] of Object.entries(_$elem)) {
|
|
11783
11784
|
if (key === 'length') break;
|
|
11784
11785
|
if ($(val).data().xuData.node) {
|
|
@@ -11790,7 +11791,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11790
11791
|
parent_element_ui_id;
|
|
11791
11792
|
const elem_key = node.xu_render_xu_ui_id;
|
|
11792
11793
|
const elem_val = { attributes: [attr], $elm: node_data.$div };
|
|
11793
|
-
if (!
|
|
11794
|
+
if (!elem_val.$elm.data()?.xuData) continue;
|
|
11794
11795
|
elem_val.$elm.data().xuData.parent_element_ui_id = $(val).attr('xu-ui-id');
|
|
11795
11796
|
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);
|
|
11796
11797
|
|
|
@@ -9503,7 +9503,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9503
9503
|
}
|
|
9504
9504
|
|
|
9505
9505
|
if (glb.new_xu_render) {
|
|
9506
|
-
if (attr === 'xu-exp:xu-render'
|
|
9506
|
+
if (attr === 'xu-exp:xu-render') {
|
|
9507
|
+
//|| attr === 'xu-render'
|
|
9507
9508
|
for await (const [key, val] of Object.entries(_$elem)) {
|
|
9508
9509
|
if (key === 'length') break;
|
|
9509
9510
|
if ($(val).data().xuData.node) {
|
|
@@ -9515,7 +9516,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9515
9516
|
parent_element_ui_id;
|
|
9516
9517
|
const elem_key = node.xu_render_xu_ui_id;
|
|
9517
9518
|
const elem_val = { attributes: [attr], $elm: node_data.$div };
|
|
9518
|
-
if (!
|
|
9519
|
+
if (!elem_val.$elm.data()?.xuData) continue;
|
|
9519
9520
|
elem_val.$elm.data().xuData.parent_element_ui_id = $(val).attr('xu-ui-id');
|
|
9520
9521
|
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);
|
|
9521
9522
|
|