@xuda.io/runtime-bundle 1.0.941 → 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/xuda-runtime-slim.js
CHANGED
|
@@ -12393,7 +12393,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12393
12393
|
|
|
12394
12394
|
let tmp_$div = $('<div>');
|
|
12395
12395
|
|
|
12396
|
-
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();
|
|
12397
12400
|
// was true before
|
|
12398
12401
|
if ($elm.data().xuData.xurender_node) {
|
|
12399
12402
|
$xurender.data({
|
|
@@ -10120,7 +10120,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10120
10120
|
|
|
10121
10121
|
let tmp_$div = $('<div>');
|
|
10122
10122
|
|
|
10123
|
-
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();
|
|
10124
10127
|
// was true before
|
|
10125
10128
|
if ($elm.data().xuData.xurender_node) {
|
|
10126
10129
|
$xurender.data({
|