@xuda.io/runtime-bundle 1.0.549 → 1.0.551
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
|
@@ -12988,6 +12988,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12988
12988
|
|
|
12989
12989
|
const replace = async function () {
|
|
12990
12990
|
$elm.replaceWith(from_panel ? new_$div.children() : new_$div);
|
|
12991
|
+
if (from_panel) {
|
|
12992
|
+
$elm.data().xuPanelData = new_$div.data().xuPanelData;
|
|
12993
|
+
}
|
|
12991
12994
|
|
|
12992
12995
|
if (val.fields_arr) {
|
|
12993
12996
|
return await func.UI.screen.refresh_xu_attributes(SESSION_ID, val.fields_arr, val.jobNoP, new_$div);
|
|
@@ -10720,6 +10720,9 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10720
10720
|
|
|
10721
10721
|
const replace = async function () {
|
|
10722
10722
|
$elm.replaceWith(from_panel ? new_$div.children() : new_$div);
|
|
10723
|
+
if (from_panel) {
|
|
10724
|
+
$elm.data().xuPanelData = new_$div.data().xuPanelData;
|
|
10725
|
+
}
|
|
10723
10726
|
|
|
10724
10727
|
if (val.fields_arr) {
|
|
10725
10728
|
return await func.UI.screen.refresh_xu_attributes(SESSION_ID, val.fields_arr, val.jobNoP, new_$div);
|