@xuda.io/runtime-bundle 1.0.1000 → 1.0.1002
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
|
@@ -14875,10 +14875,18 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
14875
14875
|
|
|
14876
14876
|
const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
14877
14877
|
const data = _ds.data_feed.rows[idx];
|
|
14878
|
-
|
|
14879
|
-
|
|
14878
|
+
|
|
14879
|
+
let str = '';
|
|
14880
|
+
|
|
14881
|
+
for (const [key, val] of Object.entries(data)) {
|
|
14882
|
+
str += val;
|
|
14880
14883
|
}
|
|
14881
|
-
|
|
14884
|
+
|
|
14885
|
+
if (_ds.parentDataSourceNo) {
|
|
14886
|
+
str += get_xu_render_cache_str(SESSION_ID, parentDataSourceNo);
|
|
14887
|
+
}
|
|
14888
|
+
|
|
14889
|
+
return str;
|
|
14882
14890
|
};
|
|
14883
14891
|
func.UI.component = {};
|
|
14884
14892
|
|
|
@@ -12600,10 +12600,18 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
12600
12600
|
|
|
12601
12601
|
const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
12602
12602
|
const data = _ds.data_feed.rows[idx];
|
|
12603
|
-
|
|
12604
|
-
|
|
12603
|
+
|
|
12604
|
+
let str = '';
|
|
12605
|
+
|
|
12606
|
+
for (const [key, val] of Object.entries(data)) {
|
|
12607
|
+
str += val;
|
|
12605
12608
|
}
|
|
12606
|
-
|
|
12609
|
+
|
|
12610
|
+
if (_ds.parentDataSourceNo) {
|
|
12611
|
+
str += get_xu_render_cache_str(SESSION_ID, parentDataSourceNo);
|
|
12612
|
+
}
|
|
12613
|
+
|
|
12614
|
+
return str;
|
|
12607
12615
|
};
|
|
12608
12616
|
func.UI.component = {};
|
|
12609
12617
|
|