@xuda.io/runtime-bundle 1.0.1031 → 1.0.1032

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.
@@ -31454,16 +31454,19 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31454
31454
  debugger;
31455
31455
  $.each(_$elem, function (key, val) {
31456
31456
  if ($(val).data().xuData.node) {
31457
+ $.each($(val).data().xuData.node.children, function (key, node) {
31458
+ if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
31459
+ const obj = {
31460
+ ui_type: _elem_val.$elm.data().xuData.ui_type,
31461
+ SESSION_ID,
31462
+ elem_key: _elem_key,
31463
+ elem_val: _elem_val,
31464
+ fields_arr,
31465
+ };
31466
+ func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_render_attributes', obj, new_job, _elem_val.$elm, _elem_val.$elm.data().xuData.paramsP.dsSessionP);
31467
+ }
31468
+ });
31457
31469
  }
31458
-
31459
- const obj = {
31460
- ui_type: _elem_val.$elm.data().xuData.ui_type,
31461
- SESSION_ID,
31462
- elem_key: _elem_key,
31463
- elem_val: _elem_val,
31464
- fields_arr,
31465
- };
31466
- func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_render_attributes', obj, new_job, _elem_val.$elm, _elem_val.$elm.data().xuData.paramsP.dsSessionP);
31467
31470
  });
31468
31471
  }
31469
31472
  }