@xuda.io/runtime-bundle 1.0.997 → 1.0.999
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.
|
@@ -32391,6 +32391,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32391
32391
|
$xurender.data().xuData.original_data_obj = original_data_obj;
|
|
32392
32392
|
|
|
32393
32393
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = original_data_obj;
|
|
32394
|
+
const cache_str = get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
32394
32395
|
|
|
32395
32396
|
// }
|
|
32396
32397
|
$elm.replaceWith(tmp_$div.children());
|
|
@@ -34551,6 +34552,18 @@ func.UI.screen.refresh_document_changes_for_realtime_update = async function (SE
|
|
|
34551
34552
|
}
|
|
34552
34553
|
}
|
|
34553
34554
|
};
|
|
34555
|
+
|
|
34556
|
+
const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
34557
|
+
var _session = SESSION_OBJ[SESSION_ID];
|
|
34558
|
+
var _ds = _session.DS_GLB[dsSessionP];
|
|
34559
|
+
|
|
34560
|
+
const idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
34561
|
+
const data = _ds.data_feed[idx];
|
|
34562
|
+
for (const row of data) {
|
|
34563
|
+
console.log(row);
|
|
34564
|
+
}
|
|
34565
|
+
debugger;
|
|
34566
|
+
};
|
|
34554
34567
|
func.UI.component = {};
|
|
34555
34568
|
|
|
34556
34569
|
func.UI.component.create_app_modal_component = function (
|