@xuda.io/runtime-bundle 1.0.1107 → 1.0.1108
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
|
@@ -14914,15 +14914,13 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14914
14914
|
|
|
14915
14915
|
if (ret.has_xu_exp_render_attribute) {
|
|
14916
14916
|
// $div.css('display', 'unset');
|
|
14917
|
-
|
|
14918
|
-
|
|
14919
|
-
|
|
14920
|
-
|
|
14921
|
-
|
|
14922
|
-
|
|
14923
|
-
|
|
14924
|
-
return $div;
|
|
14925
|
-
}
|
|
14917
|
+
|
|
14918
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
14919
|
+
const _$div = $div.clone(true);
|
|
14920
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + xu_render_cache_id] = { $div: _$div, paramsP, data: _$div.data() };
|
|
14921
|
+
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
14922
|
+
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
14923
|
+
|
|
14926
14924
|
if (ret.xu_render_background_processing) {
|
|
14927
14925
|
temp_$div.remove();
|
|
14928
14926
|
// $container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
@@ -12639,15 +12639,13 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12639
12639
|
|
|
12640
12640
|
if (ret.has_xu_exp_render_attribute) {
|
|
12641
12641
|
// $div.css('display', 'unset');
|
|
12642
|
-
|
|
12643
|
-
|
|
12644
|
-
|
|
12645
|
-
|
|
12646
|
-
|
|
12647
|
-
|
|
12648
|
-
|
|
12649
|
-
return $div;
|
|
12650
|
-
}
|
|
12642
|
+
|
|
12643
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
12644
|
+
const _$div = $div.clone(true);
|
|
12645
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + xu_render_cache_id] = { $div: _$div, paramsP, data: _$div.data() };
|
|
12646
|
+
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
12647
|
+
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
12648
|
+
|
|
12651
12649
|
if (ret.xu_render_background_processing) {
|
|
12652
12650
|
temp_$div.remove();
|
|
12653
12651
|
// $container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|