@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.
@@ -31196,7 +31196,9 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31196
31196
  // mark children items ignore list
31197
31197
  $.each(elem_val.$elm.find('*'), function (key, val) {
31198
31198
  // children_items_ignore_list.push($(val).attr('xu-ui-id'));
31199
- $(val).data().xuData.pending_to_delete = true;
31199
+ if ($(val).data().xuData) {
31200
+ $(val).data().xuData.pending_to_delete = true;
31201
+ }
31200
31202
  });
31201
31203
 
31202
31204
  if (glb.DEBUG_MODE) {
@@ -31477,7 +31479,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
31477
31479
  for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
31478
31480
  // const progDataSource_str = JSON.stringify(panel_val.prog_doc.progDataSource);
31479
31481
 
31480
- if ($panel_div.data().xuData.pending_to_delete) continue;
31482
+ if (panel_val.$panel_div.data().xuData.pending_to_delete) continue;
31481
31483
 
31482
31484
  if (fields_changed_arr) {
31483
31485
  if (fields_changed_datasource && panel_val._ds.dsSession <= Number(fields_changed_datasource)) {