@xuda.io/runtime-bundle 1.0.414 → 1.0.415
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
|
@@ -11628,7 +11628,12 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11628
11628
|
// run panels
|
|
11629
11629
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
11630
11630
|
const prog_doc = await func.utils.DOCS_OBJ.get(SESSION_ID, panel_val._ds.prog_id);
|
|
11631
|
+
await iterate_field_in_progUi(prog_doc.progUi, field_id);
|
|
11632
|
+
}
|
|
11631
11633
|
|
|
11634
|
+
// run invisible panels
|
|
11635
|
+
for await (const [parent_element_ui_id, panel_val] of Object.entries(inviable_panels_obj)) {
|
|
11636
|
+
const prog_doc = await func.utils.DOCS_OBJ.get(SESSION_ID, panel_val.prog_id);
|
|
11632
11637
|
await iterate_field_in_progUi(prog_doc.progUi, field_id);
|
|
11633
11638
|
}
|
|
11634
11639
|
}
|
|
@@ -9701,7 +9701,12 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9701
9701
|
// run panels
|
|
9702
9702
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
9703
9703
|
const prog_doc = await func.utils.DOCS_OBJ.get(SESSION_ID, panel_val._ds.prog_id);
|
|
9704
|
+
await iterate_field_in_progUi(prog_doc.progUi, field_id);
|
|
9705
|
+
}
|
|
9704
9706
|
|
|
9707
|
+
// run invisible panels
|
|
9708
|
+
for await (const [parent_element_ui_id, panel_val] of Object.entries(inviable_panels_obj)) {
|
|
9709
|
+
const prog_doc = await func.utils.DOCS_OBJ.get(SESSION_ID, panel_val.prog_id);
|
|
9705
9710
|
await iterate_field_in_progUi(prog_doc.progUi, field_id);
|
|
9706
9711
|
}
|
|
9707
9712
|
}
|