@xuda.io/runtime-bundle 1.0.441 → 1.0.443
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.
|
@@ -27820,6 +27820,7 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
27820
27820
|
var $panel_div = $(elem_val);
|
|
27821
27821
|
|
|
27822
27822
|
const panelXuAttributes = $panel_div?.data().xuPanelWrapper?.panelXuAttributes;
|
|
27823
|
+
const panelDivData = $panel_div?.data().xuPanelWrapper?.panelDivData;
|
|
27823
27824
|
|
|
27824
27825
|
if (!panelXuAttributes) continue; // skip if no longer in dom
|
|
27825
27826
|
|
|
@@ -27834,7 +27835,7 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
27834
27835
|
|
|
27835
27836
|
if (!panels_obj[xu_ui_id]) {
|
|
27836
27837
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
27837
|
-
let _ds = _session?.DS_GLB[
|
|
27838
|
+
let _ds = _session?.DS_GLB[panelDivData.xuData.paramsP.dsSessionP];
|
|
27838
27839
|
|
|
27839
27840
|
let prog_doc = await func.utils.DOCS_OBJ.get(SESSION_ID, _ds.prog_id);
|
|
27840
27841
|
if (!ignore_disableAutoRefresh && prog_doc.properties.disableAutoRefresh) {
|
|
@@ -33138,7 +33139,7 @@ func.UI.screen.panel_post_render_handler = async function (
|
|
|
33138
33139
|
};
|
|
33139
33140
|
var $old_panel_div = find_old_panels_elements();
|
|
33140
33141
|
const set_xuPanelData_to_the_new_rendered_items = () => {
|
|
33141
|
-
$container.data().xuPanelWrapper = { isWrapper: true, panelXuAttributes: _.clone($wrapper.data().xuAttributes),
|
|
33142
|
+
$container.data().xuPanelWrapper = { isWrapper: true, panelXuAttributes: _.clone($wrapper.data().xuAttributes), panelDivData: _.clone($wrapper.data()) };
|
|
33142
33143
|
$.each($wrapper.children(), function (key, val) {
|
|
33143
33144
|
if (!$(val).data().xuPanelData) {
|
|
33144
33145
|
$(val).data().xuPanelData = {};
|