@xuda.io/runtime-bundle 1.0.516 → 1.0.517
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.
|
@@ -32064,6 +32064,12 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
32064
32064
|
|
|
32065
32065
|
try {
|
|
32066
32066
|
// const panelDivData = panel_val.$panel_div.data().xuPanelWrapper.panelDivData;
|
|
32067
|
+
|
|
32068
|
+
// remove old panel content
|
|
32069
|
+
$.each(panel_val.ids, async function (key, val) {
|
|
32070
|
+
$("[xu-ui-id='" + val + "']").remove();
|
|
32071
|
+
});
|
|
32072
|
+
|
|
32067
32073
|
const new_$div = await func.UI.screen.render_ui_tree(
|
|
32068
32074
|
SESSION_ID,
|
|
32069
32075
|
$div_elm, // the wrapper
|
|
@@ -32078,11 +32084,6 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
32078
32084
|
null,
|
|
32079
32085
|
wrapper_data.xuData.$root_container, // the wrapper root container
|
|
32080
32086
|
);
|
|
32081
|
-
|
|
32082
|
-
// // remove old panel content
|
|
32083
|
-
// $.each(panel_val.ids, async function (key, val) {
|
|
32084
|
-
// $("[xu-ui-id='" + val + "']").remove();
|
|
32085
|
-
// });
|
|
32086
32087
|
} catch (error) {
|
|
32087
32088
|
debugger;
|
|
32088
32089
|
}
|