@xuda.io/runtime-bundle 1.0.252 → 1.0.253
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.
|
@@ -33757,7 +33757,7 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
33757
33757
|
"xu-bind": async function ($elm, val) {
|
|
33758
33758
|
if (is_skeleton) return;
|
|
33759
33759
|
$f = $elm;
|
|
33760
|
-
|
|
33760
|
+
let view_field_id = val.value;
|
|
33761
33761
|
let _prog_id = $elm.data().xuData.paramsP.prog_id;
|
|
33762
33762
|
let _dsP = $elm.data().xuData.paramsP.dsSessionP;
|
|
33763
33763
|
const view_ret = await func.utils.VIEWS_OBJ.get(SESSION_ID, _prog_id);
|
|
@@ -33770,6 +33770,10 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
33770
33770
|
const iterate_info = $elm?.data()?.xuData?.iterate_info
|
|
33771
33771
|
const reference_source_obj = iterate_info?.reference_source_obj
|
|
33772
33772
|
|
|
33773
|
+
if (reference_source_obj) {
|
|
33774
|
+
view_field_id = (reference_source_obj.fieldIdP || "") + val.value;
|
|
33775
|
+
}
|
|
33776
|
+
|
|
33773
33777
|
if (["_FOR_VAL", "_FOR_KEY"].includes(view_field_id)) {
|
|
33774
33778
|
is_dynamic_field = true
|
|
33775
33779
|
field_prop = _ds.dynamic_fields[view_field_id]
|