@xuda.io/runtime-bundle 1.0.986 → 1.0.988
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.
|
@@ -30902,7 +30902,7 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
30902
30902
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
30903
30903
|
|
|
30904
30904
|
const screenInfo = _.cloneDeep(screen_ret);
|
|
30905
|
-
const $callingContainerP_data = $callingContainerP.clone(true)?.data();
|
|
30905
|
+
// const $callingContainerP_data = $callingContainerP.clone(true)?.data();
|
|
30906
30906
|
|
|
30907
30907
|
var screen_type = source_functionP?.split('_')?.[1]; //|| (is_panelP && "panel");
|
|
30908
30908
|
|
|
@@ -30957,6 +30957,7 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
30957
30957
|
ui_engine: UI_FRAMEWORK_INSTALLED,
|
|
30958
30958
|
})
|
|
30959
30959
|
.addClass('xu_embed_container')
|
|
30960
|
+
.css({ display: 'contents' })
|
|
30960
30961
|
.data({
|
|
30961
30962
|
xuData: {
|
|
30962
30963
|
paramsP: params,
|
|
@@ -32175,20 +32176,22 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32175
32176
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
32176
32177
|
return { delete_job: jobNoP };
|
|
32177
32178
|
}
|
|
32178
|
-
const new_$div = await func.UI.screen.render_ui_tree(
|
|
32179
|
-
|
|
32180
|
-
|
|
32181
|
-
|
|
32182
|
-
|
|
32183
|
-
|
|
32184
|
-
|
|
32185
|
-
|
|
32186
|
-
|
|
32187
|
-
|
|
32188
|
-
|
|
32189
|
-
|
|
32190
|
-
|
|
32191
|
-
);
|
|
32179
|
+
// const new_$div = await func.UI.screen.render_ui_tree(
|
|
32180
|
+
// SESSION_ID,
|
|
32181
|
+
// $elm, //original_data_obj.$container,
|
|
32182
|
+
// _.cloneDeep(original_data_obj.nodeP),
|
|
32183
|
+
// original_data_obj.parent_infoP,
|
|
32184
|
+
// original_data_obj.paramsP,
|
|
32185
|
+
// jobNoP,
|
|
32186
|
+
// null,
|
|
32187
|
+
// original_data_obj.keyP,
|
|
32188
|
+
// null,
|
|
32189
|
+
// original_data_obj.parent_nodeP,
|
|
32190
|
+
// null,
|
|
32191
|
+
// original_data_obj.$root_container,
|
|
32192
|
+
// );
|
|
32193
|
+
|
|
32194
|
+
const new_$div = original_data_obj.$container.clone(true);
|
|
32192
32195
|
|
|
32193
32196
|
new_$div.data().xuData.original_data_obj = original_data_obj;
|
|
32194
32197
|
new_$div.data().xuData.xurender_node = $elm.clone(true);
|