@xuda.io/runtime-bundle 1.0.998 → 1.0.1000
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
|
@@ -14873,7 +14873,11 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
14873
14873
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
14874
14874
|
var _ds = _session.DS_GLB[dsSessionP];
|
|
14875
14875
|
|
|
14876
|
-
const
|
|
14876
|
+
const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
14877
|
+
const data = _ds.data_feed.rows[idx];
|
|
14878
|
+
for (const row of data) {
|
|
14879
|
+
console.log(row);
|
|
14880
|
+
}
|
|
14877
14881
|
debugger;
|
|
14878
14882
|
};
|
|
14879
14883
|
func.UI.component = {};
|
|
@@ -12598,7 +12598,11 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
12598
12598
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
12599
12599
|
var _ds = _session.DS_GLB[dsSessionP];
|
|
12600
12600
|
|
|
12601
|
-
const
|
|
12601
|
+
const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
12602
|
+
const data = _ds.data_feed.rows[idx];
|
|
12603
|
+
for (const row of data) {
|
|
12604
|
+
console.log(row);
|
|
12605
|
+
}
|
|
12602
12606
|
debugger;
|
|
12603
12607
|
};
|
|
12604
12608
|
func.UI.component = {};
|