@xuda.io/runtime-bundle 1.0.999 → 1.0.1001
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
|
@@ -14874,11 +14874,19 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
14874
14874
|
var _ds = _session.DS_GLB[dsSessionP];
|
|
14875
14875
|
|
|
14876
14876
|
const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
14877
|
-
const data = _ds.data_feed[idx];
|
|
14878
|
-
|
|
14879
|
-
|
|
14877
|
+
const data = _ds.data_feed.rows[idx];
|
|
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
|
+
return get_xu_render_cache_str(SESSION_ID, parentDataSourceNo);
|
|
14887
|
+
}
|
|
14888
|
+
|
|
14889
|
+
return str;
|
|
14882
14890
|
};
|
|
14883
14891
|
func.UI.component = {};
|
|
14884
14892
|
|
|
@@ -12599,11 +12599,19 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
12599
12599
|
var _ds = _session.DS_GLB[dsSessionP];
|
|
12600
12600
|
|
|
12601
12601
|
const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
12602
|
-
const data = _ds.data_feed[idx];
|
|
12603
|
-
|
|
12604
|
-
|
|
12602
|
+
const data = _ds.data_feed.rows[idx];
|
|
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
|
+
return get_xu_render_cache_str(SESSION_ID, parentDataSourceNo);
|
|
12612
|
+
}
|
|
12613
|
+
|
|
12614
|
+
return str;
|
|
12607
12615
|
};
|
|
12608
12616
|
func.UI.component = {};
|
|
12609
12617
|
|