@xuda.io/runtime-bundle 1.0.525 → 1.0.527
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.
|
@@ -32083,7 +32083,9 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
32083
32083
|
const ts = Date.now();
|
|
32084
32084
|
// remove old panel content
|
|
32085
32085
|
$.each(panel_val.ids, async function (key, val) {
|
|
32086
|
-
$("[xu-ui-id='" + val + "']")
|
|
32086
|
+
$("[xu-ui-id='" + val + "']")
|
|
32087
|
+
.attr('xu-ui-id', val + ts)
|
|
32088
|
+
.removeData();
|
|
32087
32089
|
// .css('filter', 'blur(1px)');
|
|
32088
32090
|
});
|
|
32089
32091
|
|
|
@@ -33422,7 +33424,7 @@ func.UI.screen.panel_post_render_handler = async function (
|
|
|
33422
33424
|
} else {
|
|
33423
33425
|
$.each($wrapper.children(), function (key, child) {
|
|
33424
33426
|
$.each($container.children(), function (key, elm) {
|
|
33425
|
-
if ($(elm)
|
|
33427
|
+
if ($(elm)?.data()?.xuData && $(elm)?.data()?.xuData?.elem_key === $(child)?.data()?.xuData?.elem_key) {
|
|
33426
33428
|
$(elm).remove();
|
|
33427
33429
|
}
|
|
33428
33430
|
});
|