@xuda.io/runtime-bundle 1.0.525 → 1.0.526

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.
@@ -12392,7 +12392,9 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
12392
12392
  const ts = Date.now();
12393
12393
  // remove old panel content
12394
12394
  $.each(panel_val.ids, async function (key, val) {
12395
- $("[xu-ui-id='" + val + "']").attr('xu-ui-id', val + ts);
12395
+ $("[xu-ui-id='" + val + "']")
12396
+ .attr('xu-ui-id', val + ts)
12397
+ .removeData();
12396
12398
  // .css('filter', 'blur(1px)');
12397
12399
  });
12398
12400
 
@@ -10124,7 +10124,9 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
10124
10124
  const ts = Date.now();
10125
10125
  // remove old panel content
10126
10126
  $.each(panel_val.ids, async function (key, val) {
10127
- $("[xu-ui-id='" + val + "']").attr('xu-ui-id', val + ts);
10127
+ $("[xu-ui-id='" + val + "']")
10128
+ .attr('xu-ui-id', val + ts)
10129
+ .removeData();
10128
10130
  // .css('filter', 'blur(1px)');
10129
10131
  });
10130
10132