@xuda.io/runtime-bundle 1.0.940 → 1.0.941
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 +4 -1
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +4 -1
- package/js/xuda-runtime-slim.min.es.js +4 -1
- 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),
|
|
@@ -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),
|