@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.
@@ -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>').attr('xu-ui-id', nodeP.id).appendTo($container).hide();
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>').attr('xu-ui-id', nodeP.id).appendTo($container).hide();
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),