@xuda.io/runtime-bundle 1.0.424 → 1.0.425
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
|
@@ -8648,9 +8648,9 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8648
8648
|
if (!ignore_disableAutoRefresh && prog_obj.properties.disableAutoRefresh) {
|
|
8649
8649
|
continue;
|
|
8650
8650
|
}
|
|
8651
|
-
|
|
8652
|
-
if (!panels_obj[
|
|
8653
|
-
panels_obj[
|
|
8651
|
+
const xu_ui_id = $div.attr('xu-ui-id');
|
|
8652
|
+
if (!panels_obj[xu_ui_id]) {
|
|
8653
|
+
panels_obj[xu_ui_id] = {
|
|
8654
8654
|
prog_id,
|
|
8655
8655
|
panelXuAttributes,
|
|
8656
8656
|
};
|
|
@@ -11636,7 +11636,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11636
11636
|
};
|
|
11637
11637
|
|
|
11638
11638
|
const $xu_embed_container = $('.xu_embed_container');
|
|
11639
|
-
const panels_obj = func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
11639
|
+
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
11640
11640
|
// let inviable_panels_obj = {};
|
|
11641
11641
|
|
|
11642
11642
|
for await (const field_id of fields_arr) {
|
|
@@ -8649,9 +8649,9 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8649
8649
|
if (!ignore_disableAutoRefresh && prog_obj.properties.disableAutoRefresh) {
|
|
8650
8650
|
continue;
|
|
8651
8651
|
}
|
|
8652
|
-
|
|
8653
|
-
if (!panels_obj[
|
|
8654
|
-
panels_obj[
|
|
8652
|
+
const xu_ui_id = $div.attr('xu-ui-id');
|
|
8653
|
+
if (!panels_obj[xu_ui_id]) {
|
|
8654
|
+
panels_obj[xu_ui_id] = {
|
|
8655
8655
|
prog_id,
|
|
8656
8656
|
panelXuAttributes,
|
|
8657
8657
|
};
|
|
@@ -9709,7 +9709,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9709
9709
|
};
|
|
9710
9710
|
|
|
9711
9711
|
const $xu_embed_container = $('.xu_embed_container');
|
|
9712
|
-
const panels_obj = func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
9712
|
+
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
|
|
9713
9713
|
// let inviable_panels_obj = {};
|
|
9714
9714
|
|
|
9715
9715
|
for await (const field_id of fields_arr) {
|