@xuda.io/runtime-bundle 1.0.1033 → 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,6 +31456,7 @@ 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
31461
  SESSION_ID,
31461
31462
  elem_key: _elem_key,
@@ -32336,6 +32337,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32336
32337
 
32337
32338
  // $elm.remove();
32338
32339
  // nodeP.xu_render_made = true;
32340
+
32339
32341
  return { xu_render_in_process: true };
32340
32342
  }
32341
32343
  return {};
@@ -34488,8 +34490,10 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34488
34490
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
34489
34491
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
34490
34492
  }
34491
- const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
34492
- 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;
34493
34497
  return $div;
34494
34498
  } else {
34495
34499
  $container.append(temp_$container.children());