@xuda.io/runtime-bundle 1.0.940 → 1.0.942
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/modules/xuda-studio-checker.min.mjs +1 -1
- package/js/modules/xuda-studio-checker.mjs +1 -1
- package/js/xuda-runtime-bundle.js +8 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +8 -2
- package/js/xuda-runtime-slim.min.es.js +8 -2
- package/js/xuda-runtime-slim.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -12305,7 +12305,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12305
12305
|
if (!value) {
|
|
12306
12306
|
var cloned_$div = $elm.clone(true);
|
|
12307
12307
|
|
|
12308
|
-
let $xurender = $('<xurender>')
|
|
12308
|
+
let $xurender = $('<xurender>')
|
|
12309
|
+
.attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
12310
|
+
.appendTo($container)
|
|
12311
|
+
.hide();
|
|
12309
12312
|
let original_data_obj = {
|
|
12310
12313
|
$container: cloned_$div,
|
|
12311
12314
|
nodeP: _.cloneDeep(nodeP),
|
|
@@ -12390,7 +12393,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12390
12393
|
|
|
12391
12394
|
let tmp_$div = $('<div>');
|
|
12392
12395
|
|
|
12393
|
-
let $xurender = $('<xurender>')
|
|
12396
|
+
let $xurender = $('<xurender>')
|
|
12397
|
+
.attr('xu-ui-id', $elm.data().xuData.node.id + '_' + $elm.data().xuData.recordid)
|
|
12398
|
+
.appendTo(tmp_$div)
|
|
12399
|
+
.hide();
|
|
12394
12400
|
// was true before
|
|
12395
12401
|
if ($elm.data().xuData.xurender_node) {
|
|
12396
12402
|
$xurender.data({
|
|
@@ -10032,7 +10032,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10032
10032
|
if (!value) {
|
|
10033
10033
|
var cloned_$div = $elm.clone(true);
|
|
10034
10034
|
|
|
10035
|
-
let $xurender = $('<xurender>')
|
|
10035
|
+
let $xurender = $('<xurender>')
|
|
10036
|
+
.attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
|
|
10037
|
+
.appendTo($container)
|
|
10038
|
+
.hide();
|
|
10036
10039
|
let original_data_obj = {
|
|
10037
10040
|
$container: cloned_$div,
|
|
10038
10041
|
nodeP: _.cloneDeep(nodeP),
|
|
@@ -10117,7 +10120,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10117
10120
|
|
|
10118
10121
|
let tmp_$div = $('<div>');
|
|
10119
10122
|
|
|
10120
|
-
let $xurender = $('<xurender>')
|
|
10123
|
+
let $xurender = $('<xurender>')
|
|
10124
|
+
.attr('xu-ui-id', $elm.data().xuData.node.id + '_' + $elm.data().xuData.recordid)
|
|
10125
|
+
.appendTo(tmp_$div)
|
|
10126
|
+
.hide();
|
|
10121
10127
|
// was true before
|
|
10122
10128
|
if ($elm.data().xuData.xurender_node) {
|
|
10123
10129
|
$xurender.data({
|