@xuda.io/runtime-bundle 1.0.941 → 1.0.943
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
|
@@ -12306,7 +12306,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12306
12306
|
var cloned_$div = $elm.clone(true);
|
|
12307
12307
|
|
|
12308
12308
|
let $xurender = $('<xurender>')
|
|
12309
|
-
.attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
12309
|
+
// .attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
12310
|
+
.attr('xu-ui-id', $elm.attr('xu-ui-id'))
|
|
12310
12311
|
.appendTo($container)
|
|
12311
12312
|
.hide();
|
|
12312
12313
|
let original_data_obj = {
|
|
@@ -12393,7 +12394,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12393
12394
|
|
|
12394
12395
|
let tmp_$div = $('<div>');
|
|
12395
12396
|
|
|
12396
|
-
let $xurender = $('<xurender>')
|
|
12397
|
+
let $xurender = $('<xurender>')
|
|
12398
|
+
// .attr('xu-ui-id', $elm.data().xuData.node.id + '_' + $elm.data().xuData.recordid)
|
|
12399
|
+
.attr('xu-ui-id', $elm.attr('xu-ui-id'))
|
|
12400
|
+
.appendTo(tmp_$div)
|
|
12401
|
+
.hide();
|
|
12397
12402
|
// was true before
|
|
12398
12403
|
if ($elm.data().xuData.xurender_node) {
|
|
12399
12404
|
$xurender.data({
|
|
@@ -10033,7 +10033,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10033
10033
|
var cloned_$div = $elm.clone(true);
|
|
10034
10034
|
|
|
10035
10035
|
let $xurender = $('<xurender>')
|
|
10036
|
-
.attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
10036
|
+
// .attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
10037
|
+
.attr('xu-ui-id', $elm.attr('xu-ui-id'))
|
|
10037
10038
|
.appendTo($container)
|
|
10038
10039
|
.hide();
|
|
10039
10040
|
let original_data_obj = {
|
|
@@ -10120,7 +10121,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10120
10121
|
|
|
10121
10122
|
let tmp_$div = $('<div>');
|
|
10122
10123
|
|
|
10123
|
-
let $xurender = $('<xurender>')
|
|
10124
|
+
let $xurender = $('<xurender>')
|
|
10125
|
+
// .attr('xu-ui-id', $elm.data().xuData.node.id + '_' + $elm.data().xuData.recordid)
|
|
10126
|
+
.attr('xu-ui-id', $elm.attr('xu-ui-id'))
|
|
10127
|
+
.appendTo(tmp_$div)
|
|
10128
|
+
.hide();
|
|
10124
10129
|
// was true before
|
|
10125
10130
|
if ($elm.data().xuData.xurender_node) {
|
|
10126
10131
|
$xurender.data({
|