@xuda.io/runtime-bundle 1.0.987 → 1.0.989
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
|
@@ -11273,6 +11273,7 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
11273
11273
|
ui_engine: UI_FRAMEWORK_INSTALLED,
|
|
11274
11274
|
})
|
|
11275
11275
|
.addClass('xu_embed_container')
|
|
11276
|
+
.css({ display: 'contents' })
|
|
11276
11277
|
.data({
|
|
11277
11278
|
xuData: {
|
|
11278
11279
|
paramsP: params,
|
|
@@ -12448,7 +12449,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12448
12449
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
12449
12450
|
const init_render = function () {
|
|
12450
12451
|
if (!value) {
|
|
12451
|
-
var cloned_$div = $elm.clone(true);
|
|
12452
|
+
var cloned_$div = $elm.clone(true, true);
|
|
12452
12453
|
|
|
12453
12454
|
let $xurender = $('<xurender>')
|
|
12454
12455
|
// .attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
@@ -12506,7 +12507,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12506
12507
|
// original_data_obj.$root_container,
|
|
12507
12508
|
// );
|
|
12508
12509
|
|
|
12509
|
-
const new_$div = original_data_obj.$container.clone(true);
|
|
12510
|
+
const new_$div = original_data_obj.$container.clone(true, true);
|
|
12510
12511
|
|
|
12511
12512
|
new_$div.data().xuData.original_data_obj = original_data_obj;
|
|
12512
12513
|
new_$div.data().xuData.xurender_node = $elm.clone(true);
|
|
@@ -8998,6 +8998,7 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
8998
8998
|
ui_engine: UI_FRAMEWORK_INSTALLED,
|
|
8999
8999
|
})
|
|
9000
9000
|
.addClass('xu_embed_container')
|
|
9001
|
+
.css({ display: 'contents' })
|
|
9001
9002
|
.data({
|
|
9002
9003
|
xuData: {
|
|
9003
9004
|
paramsP: params,
|
|
@@ -10173,7 +10174,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10173
10174
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
10174
10175
|
const init_render = function () {
|
|
10175
10176
|
if (!value) {
|
|
10176
|
-
var cloned_$div = $elm.clone(true);
|
|
10177
|
+
var cloned_$div = $elm.clone(true, true);
|
|
10177
10178
|
|
|
10178
10179
|
let $xurender = $('<xurender>')
|
|
10179
10180
|
// .attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
@@ -10231,7 +10232,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10231
10232
|
// original_data_obj.$root_container,
|
|
10232
10233
|
// );
|
|
10233
10234
|
|
|
10234
|
-
const new_$div = original_data_obj.$container.clone(true);
|
|
10235
|
+
const new_$div = original_data_obj.$container.clone(true, true);
|
|
10235
10236
|
|
|
10236
10237
|
new_$div.data().xuData.original_data_obj = original_data_obj;
|
|
10237
10238
|
new_$div.data().xuData.xurender_node = $elm.clone(true);
|