@xuda.io/runtime-bundle 1.0.687 → 1.0.688

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.
@@ -31524,7 +31524,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
31524
31524
  const _session = SESSION_OBJ[SESSION_ID];
31525
31525
  const _ds = _session.DS_GLB[fields_changed_datasource];
31526
31526
  const prog_doc = await func.utils.DOCS_OBJ.get(SESSION_ID, _ds.prog_id);
31527
- // const progDataSource_str = JSON.stringify(prog_doc.progDataSource);
31527
+
31528
31528
  validate_change(prog_doc);
31529
31529
  if (found) {
31530
31530
  const $elm = $('#container_5b1_cmp_3700419d8179_0');
@@ -31532,7 +31532,17 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
31532
31532
  const $wrapper = $elm.parent();
31533
31533
  const wrapper_data = $wrapper.data();
31534
31534
  const refreshed_ds = _ds.dsSession;
31535
- $elm.empty();
31535
+
31536
+ let elm_to_delete = [];
31537
+ const ts = Date.now();
31538
+ $.each($elm.find('*'), function (key, val) {
31539
+ let new_id = $(val).attr('xu-ui-id') + ts;
31540
+ elm_to_delete.push(new_id);
31541
+
31542
+ $(val).attr('xu-ui-id', new_id).removeData();
31543
+ });
31544
+
31545
+ // $elm.empty();
31536
31546
  const new_$div = await func.UI.screen.render_ui_tree(
31537
31547
  SESSION_ID,
31538
31548
  $elm, // the wrapper
@@ -31548,6 +31558,11 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
31548
31558
  elm_data.xuData.$root_container, // the wrapper root container
31549
31559
  );
31550
31560
 
31561
+ // remove old screen content
31562
+ $.each(elm_to_delete, async function (key, val) {
31563
+ $("[xu-ui-id='" + elm_to_delete + "']").remove();
31564
+ });
31565
+
31551
31566
  return;
31552
31567
  }
31553
31568
  }