@xuda.io/runtime-bundle 1.0.458 → 1.0.460
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
|
@@ -8662,7 +8662,7 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8662
8662
|
|
|
8663
8663
|
let ids = [];
|
|
8664
8664
|
|
|
8665
|
-
$.each($panel_div.children, function (key, val) {
|
|
8665
|
+
$.each($panel_div.children(), function (key, val) {
|
|
8666
8666
|
if ($(val).data.xuPanelData) {
|
|
8667
8667
|
ids.push($(val).attr('xu-ui-id'));
|
|
8668
8668
|
}
|
|
@@ -11721,7 +11721,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11721
11721
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
11722
11722
|
};
|
|
11723
11723
|
|
|
11724
|
-
func.UI.screen.
|
|
11724
|
+
func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
11725
11725
|
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
|
|
11726
11726
|
|
|
11727
11727
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
@@ -11820,7 +11820,7 @@ func.UI.screen.refresh_screen1 = async function (SESSION_ID, fields_changed_arr,
|
|
|
11820
11820
|
}
|
|
11821
11821
|
};
|
|
11822
11822
|
|
|
11823
|
-
func.UI.screen.
|
|
11823
|
+
func.UI.screen.refresh_screen2 = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
11824
11824
|
// const $elm = func.UI.utils.find_in_element_data('xuPanelData', $(SESSION_OBJ[SESSION_ID].root_element), 'parent_element_ui_id');
|
|
11825
11825
|
|
|
11826
11826
|
const panels_obj = func.UI.utils.get_panels_from_dom(SESSION_ID, false);
|
|
@@ -8663,7 +8663,7 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
8663
8663
|
|
|
8664
8664
|
let ids = [];
|
|
8665
8665
|
|
|
8666
|
-
$.each($panel_div.children, function (key, val) {
|
|
8666
|
+
$.each($panel_div.children(), function (key, val) {
|
|
8667
8667
|
if ($(val).data.xuPanelData) {
|
|
8668
8668
|
ids.push($(val).attr('xu-ui-id'));
|
|
8669
8669
|
}
|
|
@@ -9794,7 +9794,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9794
9794
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
9795
9795
|
};
|
|
9796
9796
|
|
|
9797
|
-
func.UI.screen.
|
|
9797
|
+
func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
9798
9798
|
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
|
|
9799
9799
|
|
|
9800
9800
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
@@ -9893,7 +9893,7 @@ func.UI.screen.refresh_screen1 = async function (SESSION_ID, fields_changed_arr,
|
|
|
9893
9893
|
}
|
|
9894
9894
|
};
|
|
9895
9895
|
|
|
9896
|
-
func.UI.screen.
|
|
9896
|
+
func.UI.screen.refresh_screen2 = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
9897
9897
|
// const $elm = func.UI.utils.find_in_element_data('xuPanelData', $(SESSION_OBJ[SESSION_ID].root_element), 'parent_element_ui_id');
|
|
9898
9898
|
|
|
9899
9899
|
const panels_obj = func.UI.utils.get_panels_from_dom(SESSION_ID, false);
|