@xuda.io/runtime-bundle 1.0.522 → 1.0.524
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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -12392,11 +12392,14 @@ 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 + "']")
|
|
12395
|
+
$("[xu-ui-id='" + val + "']")
|
|
12396
|
+
.attr('xu-ui-id', val + ts)
|
|
12397
|
+
.css('filter', 'blur(1px)');
|
|
12396
12398
|
});
|
|
12397
12399
|
|
|
12398
12400
|
let refreshed_ds;
|
|
12399
12401
|
// check if ds exist and deleted by garbage collector
|
|
12402
|
+
const _session = SESSION_OBJ[SESSION_ID];
|
|
12400
12403
|
if (_session.DS_GLB[panel_val._ds.dsSession]) {
|
|
12401
12404
|
refreshed_ds = panel_val._ds.dsSession;
|
|
12402
12405
|
}
|
|
@@ -10124,11 +10124,14 @@ 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 + "']")
|
|
10127
|
+
$("[xu-ui-id='" + val + "']")
|
|
10128
|
+
.attr('xu-ui-id', val + ts)
|
|
10129
|
+
.css('filter', 'blur(1px)');
|
|
10128
10130
|
});
|
|
10129
10131
|
|
|
10130
10132
|
let refreshed_ds;
|
|
10131
10133
|
// check if ds exist and deleted by garbage collector
|
|
10134
|
+
const _session = SESSION_OBJ[SESSION_ID];
|
|
10132
10135
|
if (_session.DS_GLB[panel_val._ds.dsSession]) {
|
|
10133
10136
|
refreshed_ds = panel_val._ds.dsSession;
|
|
10134
10137
|
}
|