@xuda.io/runtime-bundle 1.0.759 → 1.0.761

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.
@@ -32276,7 +32276,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32276
32276
  // let new_val = eval(e_exp + `="${value}"`);
32277
32277
  let e_exp = val.value.replace(bind_field_id, 'obj_item');
32278
32278
 
32279
- let new_val = eval(e_exp + `="${value}"`);
32279
+ let new_val = eval(e_exp + input_field_type === 'string' ? `="${value}"` : `=${value}`);
32280
32280
 
32281
32281
  new_arr[arr_idx] = obj_item;
32282
32282
  } else {
@@ -32313,7 +32313,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32313
32313
  value = _ds.dynamic_fields[bind_field_id].value;
32314
32314
  } else {
32315
32315
  const row_idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
32316
- value = _ds.data_feed.rows?.[row_idx]?.[val.value];
32316
+ value = _ds.data_feed.rows?.[row_idx]?.[bind_field_id];
32317
32317
  }
32318
32318
  if (field_prop.props.fieldType === 'array' && $elm.attr('type') === 'checkbox' && $elm.attr('value')) {
32319
32319
  if (value.includes($elm.attr('value'))) {