@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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -11727,10 +11727,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11727
11727
|
const iterate_progUi = async function (node, node_id) {
|
|
11728
11728
|
for (let item of node) {
|
|
11729
11729
|
if (!_.isEmpty(item.attributes)) {
|
|
11730
|
+
const parent_element_ui_id = node_id;
|
|
11730
11731
|
for await (const [attr, val] of Object.entries(item.attributes)) {
|
|
11731
11732
|
if (attr === 'xu-exp:xu-for' || attr === 'xu-for') {
|
|
11732
11733
|
if (val?.includes(field_id)) {
|
|
11733
|
-
const parent_element_ui_id = node_id;
|
|
11734
|
+
// const parent_element_ui_id = node_id;
|
|
11734
11735
|
debugger;
|
|
11735
11736
|
// let _$elem = $(`[xu-ui-id^=${parent_element_ui_id}]`);
|
|
11736
11737
|
let _$elem = $(`[xu-node-id=${parent_element_ui_id}]`);
|
|
@@ -9452,10 +9452,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9452
9452
|
const iterate_progUi = async function (node, node_id) {
|
|
9453
9453
|
for (let item of node) {
|
|
9454
9454
|
if (!_.isEmpty(item.attributes)) {
|
|
9455
|
+
const parent_element_ui_id = node_id;
|
|
9455
9456
|
for await (const [attr, val] of Object.entries(item.attributes)) {
|
|
9456
9457
|
if (attr === 'xu-exp:xu-for' || attr === 'xu-for') {
|
|
9457
9458
|
if (val?.includes(field_id)) {
|
|
9458
|
-
const parent_element_ui_id = node_id;
|
|
9459
|
+
// const parent_element_ui_id = node_id;
|
|
9459
9460
|
debugger;
|
|
9460
9461
|
// let _$elem = $(`[xu-ui-id^=${parent_element_ui_id}]`);
|
|
9461
9462
|
let _$elem = $(`[xu-node-id=${parent_element_ui_id}]`);
|