@xuda.io/runtime-bundle 1.0.259 → 1.0.260
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
|
@@ -14736,13 +14736,13 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
14736
14736
|
if (!custom_iterator_key) {
|
|
14737
14737
|
is_key_dynamic_field = true
|
|
14738
14738
|
// iterator_key = (reference_source_obj?.fieldIdP || "") + "_FOR_KEY";
|
|
14739
|
-
iterator_key = $elm.data().xuData.node_org.id + "_FOR_KEY";
|
|
14739
|
+
iterator_key = $elm.data().xuData.node_org.id.replaceAll("-", "_") + "_FOR_KEY";
|
|
14740
14740
|
}
|
|
14741
14741
|
|
|
14742
14742
|
if (!custom_iterator_val) {
|
|
14743
14743
|
is_val_dynamic_field = true
|
|
14744
14744
|
// iterator_val = (reference_source_obj?.fieldIdP || "") + "_FOR_VAL";
|
|
14745
|
-
iterator_val = $elm.data().xuData.node_org.id + "_FOR_VAL";
|
|
14745
|
+
iterator_val = $elm.data().xuData.node_org.id.replaceAll("-", "_") + "_FOR_VAL";
|
|
14746
14746
|
}
|
|
14747
14747
|
|
|
14748
14748
|
var i = 0;
|
|
@@ -12146,13 +12146,13 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
12146
12146
|
if (!custom_iterator_key) {
|
|
12147
12147
|
is_key_dynamic_field = true
|
|
12148
12148
|
// iterator_key = (reference_source_obj?.fieldIdP || "") + "_FOR_KEY";
|
|
12149
|
-
iterator_key = $elm.data().xuData.node_org.id + "_FOR_KEY";
|
|
12149
|
+
iterator_key = $elm.data().xuData.node_org.id.replaceAll("-", "_") + "_FOR_KEY";
|
|
12150
12150
|
}
|
|
12151
12151
|
|
|
12152
12152
|
if (!custom_iterator_val) {
|
|
12153
12153
|
is_val_dynamic_field = true
|
|
12154
12154
|
// iterator_val = (reference_source_obj?.fieldIdP || "") + "_FOR_VAL";
|
|
12155
|
-
iterator_val = $elm.data().xuData.node_org.id + "_FOR_VAL";
|
|
12155
|
+
iterator_val = $elm.data().xuData.node_org.id.replaceAll("-", "_") + "_FOR_VAL";
|
|
12156
12156
|
}
|
|
12157
12157
|
|
|
12158
12158
|
var i = 0;
|