@xuda.io/runtime-bundle 1.0.1104 → 1.0.1105

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.
@@ -31485,16 +31485,19 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31485
31485
  var res = await func.expression.get(SESSION_ID, elem_val.$elm.data().xuAttributes['xu-exp:xu-render'], elem_val.$elm.data().xuData.paramsP.dsSessionP, 'UI Property EXP', elem_val.$elm.data().xuData.recordid);
31486
31486
 
31487
31487
  var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
31488
-
31489
- const obj = {
31490
- ui_type: elem_val.$elm.data().xuData.ui_type,
31491
- SESSION_ID,
31492
- elem_key,
31493
- elem_val,
31494
- fields_arr,
31495
- attr_value,
31496
- };
31497
- func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_render_attributes', obj, new_job, elem_val.$elm, elem_val.$elm.data().xuData.paramsP.dsSessionP);
31488
+ try {
31489
+ const obj = {
31490
+ ui_type: elem_val.$elm.data().xuData.ui_type,
31491
+ SESSION_ID,
31492
+ elem_key,
31493
+ elem_val,
31494
+ fields_arr,
31495
+ attr_value,
31496
+ };
31497
+ func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_render_attributes', obj, new_job, elem_val.$elm, elem_val.$elm.data().xuData.paramsP.dsSessionP);
31498
+ } catch (error) {
31499
+ debugger;
31500
+ }
31498
31501
  }
31499
31502
  }
31500
31503
  }