@xuda.io/runtime-bundle 1.0.948 → 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) {
|
|
@@ -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) {
|