@xuda.io/runtime-bundle 1.0.1034 → 1.0.1036
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.
|
@@ -31259,7 +31259,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31259
31259
|
}
|
|
31260
31260
|
});
|
|
31261
31261
|
|
|
31262
|
-
const selector_id = $(this).data()?.xuData?.xu_id;
|
|
31262
|
+
const selector_id = glb.new_xu_render ? $(this).data()?.xuData?.ui_id : $(this).data()?.xuData?.xu_id;
|
|
31263
31263
|
|
|
31264
31264
|
if (attr.length) {
|
|
31265
31265
|
selectors[selector_id] = selectors[selector_id];
|
|
@@ -31455,9 +31455,14 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31455
31455
|
$.each(_$elem, function (key, val) {
|
|
31456
31456
|
if ($(val).data().xuData.node) {
|
|
31457
31457
|
$.each($(val).data().xuData.node.children, function (key, node) {
|
|
31458
|
+
if (node_id !== node.id) return true;
|
|
31459
|
+
|
|
31458
31460
|
if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
|
|
31459
31461
|
const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
|
|
31462
|
+
const _elem_key = node.xu_render_xu_ui_id;
|
|
31463
|
+
const _elem_val = { attributes: [attr], $elm: node_data.$div };
|
|
31460
31464
|
const obj = {
|
|
31465
|
+
ui_type: _elem_val.$elm.data().xuData.ui_type,
|
|
31461
31466
|
SESSION_ID,
|
|
31462
31467
|
elem_key: _elem_key,
|
|
31463
31468
|
elem_val: _elem_val,
|