@xuda.io/runtime-bundle 1.0.1032 → 1.0.1034

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.
@@ -31456,8 +31456,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31456
31456
  if ($(val).data().xuData.node) {
31457
31457
  $.each($(val).data().xuData.node.children, function (key, node) {
31458
31458
  if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
31459
+ const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
31459
31460
  const obj = {
31460
- ui_type: _elem_val.$elm.data().xuData.ui_type,
31461
31461
  SESSION_ID,
31462
31462
  elem_key: _elem_key,
31463
31463
  elem_val: _elem_val,
@@ -32337,6 +32337,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32337
32337
 
32338
32338
  // $elm.remove();
32339
32339
  // nodeP.xu_render_made = true;
32340
+
32340
32341
  return { xu_render_in_process: true };
32341
32342
  }
32342
32343
  return {};
@@ -34489,8 +34490,10 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34489
34490
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
34490
34491
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
34491
34492
  }
34492
- const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
34493
- UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = { $div: $div.clone(true) };
34493
+ const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
34494
+ UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = { $div: $div.clone(true) };
34495
+ nodeP.xu_render_xu_ui_id = xu_ui_id;
34496
+ nodeP.xu_render_cache_id = xu_render_cache_id;
34494
34497
  return $div;
34495
34498
  } else {
34496
34499
  $container.append(temp_$container.children());