@xuda.io/runtime-bundle 1.0.1000 → 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.
@@ -34559,10 +34559,18 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
34559
34559
 
34560
34560
  const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
34561
34561
  const data = _ds.data_feed.rows[idx];
34562
- for (const row of data) {
34563
- console.log(row);
34562
+
34563
+ let str = '';
34564
+
34565
+ for (const [key, val] of Object.entries(data)) {
34566
+ str += val;
34564
34567
  }
34565
- debugger;
34568
+
34569
+ if (_ds.parentDataSourceNo) {
34570
+ return get_xu_render_cache_str(SESSION_ID, parentDataSourceNo);
34571
+ }
34572
+
34573
+ return str;
34566
34574
  };
34567
34575
  func.UI.component = {};
34568
34576