@xuda.io/runtime-bundle 1.0.1034 → 1.0.1035

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.
@@ -11575,7 +11575,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11575
11575
  }
11576
11576
  });
11577
11577
 
11578
- const selector_id = $(this).data()?.xuData?.xu_id;
11578
+ const selector_id = glb.new_xu_render ? $(this).data()?.xuData?.ui_id : $(this).data()?.xuData?.xu_id;
11579
11579
 
11580
11580
  if (attr.length) {
11581
11581
  selectors[selector_id] = selectors[selector_id];
@@ -11773,7 +11773,10 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11773
11773
  $.each($(val).data().xuData.node.children, function (key, node) {
11774
11774
  if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
11775
11775
  const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
11776
+ const _elem_key = node.xu_render_xu_ui_id;
11777
+ const _elem_val = { attributes: [attr], $elm: node_data.$div };
11776
11778
  const obj = {
11779
+ ui_type: _elem_val.$elm.data().xuData.ui_type,
11777
11780
  SESSION_ID,
11778
11781
  elem_key: _elem_key,
11779
11782
  elem_val: _elem_val,
@@ -9300,7 +9300,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9300
9300
  }
9301
9301
  });
9302
9302
 
9303
- const selector_id = $(this).data()?.xuData?.xu_id;
9303
+ const selector_id = glb.new_xu_render ? $(this).data()?.xuData?.ui_id : $(this).data()?.xuData?.xu_id;
9304
9304
 
9305
9305
  if (attr.length) {
9306
9306
  selectors[selector_id] = selectors[selector_id];
@@ -9498,7 +9498,10 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9498
9498
  $.each($(val).data().xuData.node.children, function (key, node) {
9499
9499
  if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
9500
9500
  const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
9501
+ const _elem_key = node.xu_render_xu_ui_id;
9502
+ const _elem_val = { attributes: [attr], $elm: node_data.$div };
9501
9503
  const obj = {
9504
+ ui_type: _elem_val.$elm.data().xuData.ui_type,
9502
9505
  SESSION_ID,
9503
9506
  elem_key: _elem_key,
9504
9507
  elem_val: _elem_val,