@xuda.io/runtime-bundle 1.0.743 → 1.0.744
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
|
@@ -13572,7 +13572,7 @@ func.UI.screen.create_container = function (SESSION_ID, $root_container, nodeP,
|
|
|
13572
13572
|
items = nodeP.children.map(function (val) {
|
|
13573
13573
|
return val.xu_tree_id || val.id;
|
|
13574
13574
|
});
|
|
13575
|
-
var currentRecordId = _ds ? _ds.currentRecordId : '';
|
|
13575
|
+
var currentRecordId = $container.data().xuData.recordid; // _ds ? _ds.currentRecordId : '';
|
|
13576
13576
|
var xu_id = (glb.screen_num++).toString();
|
|
13577
13577
|
xu_id = xu_id += '_' + currentRecordId;
|
|
13578
13578
|
|
|
@@ -11282,7 +11282,7 @@ func.UI.screen.create_container = function (SESSION_ID, $root_container, nodeP,
|
|
|
11282
11282
|
items = nodeP.children.map(function (val) {
|
|
11283
11283
|
return val.xu_tree_id || val.id;
|
|
11284
11284
|
});
|
|
11285
|
-
var currentRecordId = _ds ? _ds.currentRecordId : '';
|
|
11285
|
+
var currentRecordId = $container.data().xuData.recordid; // _ds ? _ds.currentRecordId : '';
|
|
11286
11286
|
var xu_id = (glb.screen_num++).toString();
|
|
11287
11287
|
xu_id = xu_id += '_' + currentRecordId;
|
|
11288
11288
|
|