@xuda.io/runtime-bundle 1.0.947 → 1.0.949
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
|
@@ -11510,7 +11510,9 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11510
11510
|
// mark children items ignore list
|
|
11511
11511
|
$.each(elem_val.$elm.find('*'), function (key, val) {
|
|
11512
11512
|
// children_items_ignore_list.push($(val).attr('xu-ui-id'));
|
|
11513
|
-
$(val).data().xuData
|
|
11513
|
+
if ($(val).data().xuData) {
|
|
11514
|
+
$(val).data().xuData.pending_to_delete = true;
|
|
11515
|
+
}
|
|
11514
11516
|
});
|
|
11515
11517
|
|
|
11516
11518
|
if (glb.DEBUG_MODE) {
|
|
@@ -11791,7 +11793,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11791
11793
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
11792
11794
|
// const progDataSource_str = JSON.stringify(panel_val.prog_doc.progDataSource);
|
|
11793
11795
|
|
|
11794
|
-
if (
|
|
11796
|
+
if (panel_val.$panel_div.data().xuData.pending_to_delete) continue;
|
|
11795
11797
|
|
|
11796
11798
|
if (fields_changed_arr) {
|
|
11797
11799
|
if (fields_changed_datasource && panel_val._ds.dsSession <= Number(fields_changed_datasource)) {
|
|
@@ -9237,7 +9237,9 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9237
9237
|
// mark children items ignore list
|
|
9238
9238
|
$.each(elem_val.$elm.find('*'), function (key, val) {
|
|
9239
9239
|
// children_items_ignore_list.push($(val).attr('xu-ui-id'));
|
|
9240
|
-
$(val).data().xuData
|
|
9240
|
+
if ($(val).data().xuData) {
|
|
9241
|
+
$(val).data().xuData.pending_to_delete = true;
|
|
9242
|
+
}
|
|
9241
9243
|
});
|
|
9242
9244
|
|
|
9243
9245
|
if (glb.DEBUG_MODE) {
|
|
@@ -9518,7 +9520,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9518
9520
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
9519
9521
|
// const progDataSource_str = JSON.stringify(panel_val.prog_doc.progDataSource);
|
|
9520
9522
|
|
|
9521
|
-
if (
|
|
9523
|
+
if (panel_val.$panel_div.data().xuData.pending_to_delete) continue;
|
|
9522
9524
|
|
|
9523
9525
|
if (fields_changed_arr) {
|
|
9524
9526
|
if (fields_changed_datasource && panel_val._ds.dsSession <= Number(fields_changed_datasource)) {
|