@xuda.io/runtime-bundle 1.0.445 → 1.0.447
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
|
@@ -11781,7 +11781,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11781
11781
|
}
|
|
11782
11782
|
}
|
|
11783
11783
|
if (found) {
|
|
11784
|
-
const $div_elm = panel_val.$panel_div;
|
|
11784
|
+
const $div_elm = panel_val.$panel_div.parent().find("[xu-ui-id='" + parent_element_ui_id + "']");
|
|
11785
11785
|
// var $div_elm = panel_val.$div
|
|
11786
11786
|
// .parent()
|
|
11787
11787
|
// .parent()
|
|
@@ -11791,7 +11791,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11791
11791
|
try {
|
|
11792
11792
|
// const $org_panel = panel_val.$div.data().xuPanelData.$panel_div;
|
|
11793
11793
|
const panelDivData = panel_val.$panel_div.data().xuPanelWrapper.panelDivData;
|
|
11794
|
-
const new_$div = await func.UI.screen.render_ui_tree(SESSION_ID, $div_elm, _.cloneDeep(panelDivData.xuData.node), {},
|
|
11794
|
+
const new_$div = await func.UI.screen.render_ui_tree(SESSION_ID, $div_elm, _.cloneDeep(panelDivData.xuData.node), {}, panelDivData.xuData.paramsP, null, null, panelDivData.xuData.key, null, panelDivData.xuData.parent_node, null, panelDivData.xuData.$root_container);
|
|
11795
11795
|
|
|
11796
11796
|
// remove old panel content
|
|
11797
11797
|
$.each(panel_val.ids, async function (key, val) {
|
|
@@ -9854,7 +9854,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9854
9854
|
}
|
|
9855
9855
|
}
|
|
9856
9856
|
if (found) {
|
|
9857
|
-
const $div_elm = panel_val.$panel_div;
|
|
9857
|
+
const $div_elm = panel_val.$panel_div.parent().find("[xu-ui-id='" + parent_element_ui_id + "']");
|
|
9858
9858
|
// var $div_elm = panel_val.$div
|
|
9859
9859
|
// .parent()
|
|
9860
9860
|
// .parent()
|
|
@@ -9864,7 +9864,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9864
9864
|
try {
|
|
9865
9865
|
// const $org_panel = panel_val.$div.data().xuPanelData.$panel_div;
|
|
9866
9866
|
const panelDivData = panel_val.$panel_div.data().xuPanelWrapper.panelDivData;
|
|
9867
|
-
const new_$div = await func.UI.screen.render_ui_tree(SESSION_ID, $div_elm, _.cloneDeep(panelDivData.xuData.node), {},
|
|
9867
|
+
const new_$div = await func.UI.screen.render_ui_tree(SESSION_ID, $div_elm, _.cloneDeep(panelDivData.xuData.node), {}, panelDivData.xuData.paramsP, null, null, panelDivData.xuData.key, null, panelDivData.xuData.parent_node, null, panelDivData.xuData.$root_container);
|
|
9868
9868
|
|
|
9869
9869
|
// remove old panel content
|
|
9870
9870
|
$.each(panel_val.ids, async function (key, val) {
|