@xuda.io/runtime-bundle 1.0.948 → 1.0.950

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.
@@ -11327,13 +11327,13 @@ func.UI.screen.call_embed = function (SESSION_ID, prog) {
11327
11327
  func.UI.main.embed_prog_execute(SESSION_ID, prog);
11328
11328
  };
11329
11329
  func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, jobNoP, $elm_to_search, dsSession_changed, avoid_xu_for_refresh) {
11330
- if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
11331
- // let dom to finish
11332
- setTimeout(() => {
11333
- func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_arr, jobNoP, $elm_to_search, dsSession_changed);
11334
- }, 100);
11335
- return;
11336
- }
11330
+ // if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
11331
+ // // let dom to finish
11332
+ // setTimeout(() => {
11333
+ // func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_arr, jobNoP, $elm_to_search, dsSession_changed);
11334
+ // }, 100);
11335
+ // return;
11336
+ // }
11337
11337
  UI_WORKER_OBJ.cache = {};
11338
11338
  const _session = SESSION_OBJ[SESSION_ID];
11339
11339
  if (glb.DEBUG_MODE) {
@@ -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.pending_to_delete = true;
11513
+ if ($(val).data().xuData) {
11514
+ $(val).data().xuData.pending_to_delete = true;
11515
+ }
11514
11516
  });
11515
11517
 
11516
11518
  if (glb.DEBUG_MODE) {
@@ -9054,13 +9054,13 @@ func.UI.screen.call_embed = function (SESSION_ID, prog) {
9054
9054
  func.UI.main.embed_prog_execute(SESSION_ID, prog);
9055
9055
  };
9056
9056
  func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, jobNoP, $elm_to_search, dsSession_changed, avoid_xu_for_refresh) {
9057
- if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
9058
- // let dom to finish
9059
- setTimeout(() => {
9060
- func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_arr, jobNoP, $elm_to_search, dsSession_changed);
9061
- }, 100);
9062
- return;
9063
- }
9057
+ // if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
9058
+ // // let dom to finish
9059
+ // setTimeout(() => {
9060
+ // func.UI.screen.refresh_xu_attributes(SESSION_ID, fields_arr, jobNoP, $elm_to_search, dsSession_changed);
9061
+ // }, 100);
9062
+ // return;
9063
+ // }
9064
9064
  UI_WORKER_OBJ.cache = {};
9065
9065
  const _session = SESSION_OBJ[SESSION_ID];
9066
9066
  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.pending_to_delete = true;
9240
+ if ($(val).data().xuData) {
9241
+ $(val).data().xuData.pending_to_delete = true;
9242
+ }
9241
9243
  });
9242
9244
 
9243
9245
  if (glb.DEBUG_MODE) {