@xuda.io/runtime-bundle 1.0.1029 → 1.0.1030
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.
|
@@ -31411,10 +31411,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31411
31411
|
const iterate_progUi = async function (node, node_id) {
|
|
31412
31412
|
for (let item of node) {
|
|
31413
31413
|
if (!_.isEmpty(item.attributes)) {
|
|
31414
|
+
const parent_element_ui_id = node_id;
|
|
31414
31415
|
for await (const [attr, val] of Object.entries(item.attributes)) {
|
|
31415
31416
|
if (attr === 'xu-exp:xu-for' || attr === 'xu-for') {
|
|
31416
31417
|
if (val?.includes(field_id)) {
|
|
31417
|
-
const parent_element_ui_id = node_id;
|
|
31418
|
+
// const parent_element_ui_id = node_id;
|
|
31418
31419
|
debugger;
|
|
31419
31420
|
// let _$elem = $(`[xu-ui-id^=${parent_element_ui_id}]`);
|
|
31420
31421
|
let _$elem = $(`[xu-node-id=${parent_element_ui_id}]`);
|