@xuda.io/runtime-bundle 1.0.996 → 1.0.998
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.
|
@@ -32130,7 +32130,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32130
32130
|
set_value();
|
|
32131
32131
|
return {};
|
|
32132
32132
|
},
|
|
32133
|
-
'xu-render': async function ($elm, val, from_panel) {
|
|
32133
|
+
'xu-render-org': async function ($elm, val, from_panel) {
|
|
32134
32134
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
32135
32135
|
const init_render = function () {
|
|
32136
32136
|
if (!value) {
|
|
@@ -32259,7 +32259,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32259
32259
|
}
|
|
32260
32260
|
return await post_render();
|
|
32261
32261
|
},
|
|
32262
|
-
'xu-render
|
|
32262
|
+
'xu-render': async function ($elm, val, from_panel) {
|
|
32263
32263
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
32264
32264
|
const init_render = function () {
|
|
32265
32265
|
if (!value) {
|
|
@@ -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,14 @@ 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 data = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
|
|
34561
|
+
debugger;
|
|
34562
|
+
};
|
|
34554
34563
|
func.UI.component = {};
|
|
34555
34564
|
|
|
34556
34565
|
func.UI.component.create_app_modal_component = function (
|