@xuda.io/runtime-bundle 1.0.432 → 1.0.433
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
|
@@ -11749,7 +11749,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11749
11749
|
if (found) break;
|
|
11750
11750
|
|
|
11751
11751
|
// found = find_field_in_progUi(prog_doc.progUi, parameter_in_field_id, 'xu-for');
|
|
11752
|
-
found = func.UI.find_field_in_progUi_attributes(prog_doc.progUi, parameter_in_field_id, 'xu-for').length;
|
|
11752
|
+
found = func.UI.find_field_in_progUi_attributes(panel_val.prog_doc.progUi, parameter_in_field_id, 'xu-for').length;
|
|
11753
11753
|
if (found) break;
|
|
11754
11754
|
}
|
|
11755
11755
|
}
|
|
@@ -11759,6 +11759,9 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11759
11759
|
// search field changed in the target program's progDataSource // @code
|
|
11760
11760
|
found = progDataSource_str?.includes('@' + field_id);
|
|
11761
11761
|
if (found) break;
|
|
11762
|
+
|
|
11763
|
+
found = func.UI.find_field_in_progUi_attributes(panel_val.prog_doc.progUi, field_id, 'xu-for').length;
|
|
11764
|
+
if (found) break;
|
|
11762
11765
|
}
|
|
11763
11766
|
}
|
|
11764
11767
|
|
|
@@ -9822,7 +9822,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9822
9822
|
if (found) break;
|
|
9823
9823
|
|
|
9824
9824
|
// found = find_field_in_progUi(prog_doc.progUi, parameter_in_field_id, 'xu-for');
|
|
9825
|
-
found = func.UI.find_field_in_progUi_attributes(prog_doc.progUi, parameter_in_field_id, 'xu-for').length;
|
|
9825
|
+
found = func.UI.find_field_in_progUi_attributes(panel_val.prog_doc.progUi, parameter_in_field_id, 'xu-for').length;
|
|
9826
9826
|
if (found) break;
|
|
9827
9827
|
}
|
|
9828
9828
|
}
|
|
@@ -9832,6 +9832,9 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9832
9832
|
// search field changed in the target program's progDataSource // @code
|
|
9833
9833
|
found = progDataSource_str?.includes('@' + field_id);
|
|
9834
9834
|
if (found) break;
|
|
9835
|
+
|
|
9836
|
+
found = func.UI.find_field_in_progUi_attributes(panel_val.prog_doc.progUi, field_id, 'xu-for').length;
|
|
9837
|
+
if (found) break;
|
|
9835
9838
|
}
|
|
9836
9839
|
}
|
|
9837
9840
|
|