@xuda.io/runtime-bundle 1.0.988 → 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
|
@@ -12449,7 +12449,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12449
12449
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
12450
12450
|
const init_render = function () {
|
|
12451
12451
|
if (!value) {
|
|
12452
|
-
var cloned_$div = $elm.clone(true);
|
|
12452
|
+
var cloned_$div = $elm.clone(true, true);
|
|
12453
12453
|
|
|
12454
12454
|
let $xurender = $('<xurender>')
|
|
12455
12455
|
// .attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
@@ -12507,7 +12507,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12507
12507
|
// original_data_obj.$root_container,
|
|
12508
12508
|
// );
|
|
12509
12509
|
|
|
12510
|
-
const new_$div = original_data_obj.$container.clone(true);
|
|
12510
|
+
const new_$div = original_data_obj.$container.clone(true, true);
|
|
12511
12511
|
|
|
12512
12512
|
new_$div.data().xuData.original_data_obj = original_data_obj;
|
|
12513
12513
|
new_$div.data().xuData.xurender_node = $elm.clone(true);
|
|
@@ -10174,7 +10174,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10174
10174
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
10175
10175
|
const init_render = function () {
|
|
10176
10176
|
if (!value) {
|
|
10177
|
-
var cloned_$div = $elm.clone(true);
|
|
10177
|
+
var cloned_$div = $elm.clone(true, true);
|
|
10178
10178
|
|
|
10179
10179
|
let $xurender = $('<xurender>')
|
|
10180
10180
|
// .attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
@@ -10232,7 +10232,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10232
10232
|
// original_data_obj.$root_container,
|
|
10233
10233
|
// );
|
|
10234
10234
|
|
|
10235
|
-
const new_$div = original_data_obj.$container.clone(true);
|
|
10235
|
+
const new_$div = original_data_obj.$container.clone(true, true);
|
|
10236
10236
|
|
|
10237
10237
|
new_$div.data().xuData.original_data_obj = original_data_obj;
|
|
10238
10238
|
new_$div.data().xuData.xurender_node = $elm.clone(true);
|