@xuda.io/runtime-bundle 1.0.256 → 1.0.257
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
|
@@ -14407,8 +14407,14 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
14407
14407
|
// if (reference_source_obj) {
|
|
14408
14408
|
// view_field_id = (reference_source_obj.fieldIdP || "") + val.value;
|
|
14409
14409
|
// }
|
|
14410
|
-
view_field_id = $elm.data().xuData.node_org.id + val.value;
|
|
14410
|
+
// view_field_id = $elm.data().xuData.node_org.id + val.value;
|
|
14411
|
+
if (val.value === "_FOR_KEY") {
|
|
14412
|
+
view_field_id = $elm.data().xuData.iterate_info.iterator_key;
|
|
14413
|
+
}
|
|
14411
14414
|
|
|
14415
|
+
if (val.value === "_FOR_VAL") {
|
|
14416
|
+
view_field_id = $elm.data().xuData.iterate_info.iterator_val;
|
|
14417
|
+
}
|
|
14412
14418
|
is_dynamic_field = true
|
|
14413
14419
|
field_prop = _ds.dynamic_fields[view_field_id]
|
|
14414
14420
|
} else {
|
|
@@ -11817,8 +11817,14 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
11817
11817
|
// if (reference_source_obj) {
|
|
11818
11818
|
// view_field_id = (reference_source_obj.fieldIdP || "") + val.value;
|
|
11819
11819
|
// }
|
|
11820
|
-
view_field_id = $elm.data().xuData.node_org.id + val.value;
|
|
11820
|
+
// view_field_id = $elm.data().xuData.node_org.id + val.value;
|
|
11821
|
+
if (val.value === "_FOR_KEY") {
|
|
11822
|
+
view_field_id = $elm.data().xuData.iterate_info.iterator_key;
|
|
11823
|
+
}
|
|
11821
11824
|
|
|
11825
|
+
if (val.value === "_FOR_VAL") {
|
|
11826
|
+
view_field_id = $elm.data().xuData.iterate_info.iterator_val;
|
|
11827
|
+
}
|
|
11822
11828
|
is_dynamic_field = true
|
|
11823
11829
|
field_prop = _ds.dynamic_fields[view_field_id]
|
|
11824
11830
|
} else {
|