@xuda.io/runtime-bundle 1.0.586 → 1.0.588
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
|
@@ -12008,7 +12008,6 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
12008
12008
|
};
|
|
12009
12009
|
|
|
12010
12010
|
func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
12011
|
-
return;
|
|
12012
12011
|
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
|
|
12013
12012
|
|
|
12014
12013
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
@@ -12016,7 +12015,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
12016
12015
|
|
|
12017
12016
|
var found, refresh_reason, refresh_details;
|
|
12018
12017
|
if (fields_changed_arr) {
|
|
12019
|
-
if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
12018
|
+
if (fields_changed_datasource && panel_val._ds.dsSession < Number(fields_changed_datasource)) {
|
|
12020
12019
|
continue;
|
|
12021
12020
|
}
|
|
12022
12021
|
for (const field_id of fields_changed_arr) {
|
|
@@ -9740,7 +9740,6 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9740
9740
|
};
|
|
9741
9741
|
|
|
9742
9742
|
func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
9743
|
-
return;
|
|
9744
9743
|
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
|
|
9745
9744
|
|
|
9746
9745
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
@@ -9748,7 +9747,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9748
9747
|
|
|
9749
9748
|
var found, refresh_reason, refresh_details;
|
|
9750
9749
|
if (fields_changed_arr) {
|
|
9751
|
-
if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
9750
|
+
if (fields_changed_datasource && panel_val._ds.dsSession < Number(fields_changed_datasource)) {
|
|
9752
9751
|
continue;
|
|
9753
9752
|
}
|
|
9754
9753
|
for (const field_id of fields_changed_arr) {
|