@xuda.io/runtime-bundle 1.0.600 → 1.0.602

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.
@@ -27819,12 +27819,14 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
27819
27819
  // return func.events.delete_job(SESSION_ID, queue_obj.jobNoP);
27820
27820
  return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
27821
27821
  }
27822
+
27822
27823
  $elm.empty();
27823
27824
  let _data = queue_obj.paramsP.elem_val.$elm.data();
27825
+ const node_to_render = _data.xuData.node_org.children?.find((e) => e.id === queue_obj?.paramsP?.elem_val?.xu_for_item_id);
27824
27826
  func.UI.screen.render_ui_tree(
27825
27827
  queue_obj.paramsP.SESSION_ID,
27826
27828
  queue_obj.paramsP.elem_val.$elm,
27827
- _data.xuData.node_org.children[0], //_data?.xuData?.node?.children?.length ? _data.xuData.node.children[0] : _data.xuData.node,
27829
+ node_to_render, //_data.xuData.node_org.children[0], //_data?.xuData?.node?.children?.length ? _data.xuData.node.children[0] : _data.xuData.node,
27828
27830
  null,
27829
27831
  _data.xuData.paramsP,
27830
27832
  queue_obj.jobNoP,
@@ -31626,6 +31628,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31626
31628
  elem_key: _elem_key,
31627
31629
  elem_val: _elem_val,
31628
31630
  fields_arr,
31631
+ xu_for_item_id: item.id,
31629
31632
  };
31630
31633
  await func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_for', obj, new_job, _elem_val.$elm, _elem_val.$elm.data().xuData.paramsP.dsSessionP);
31631
31634