Hierarchy

  • UpDataEditControl
    • UpRadioGroupEditControl

Accessors

  • get required(): boolean
  • Check if input is required.

    Returns boolean

  • set required(value): void
  • Set input required / not required.

    Parameters

    • value: boolean

    Returns void

Methods

  • Checks control validity.

    Returns Promise<ValidationInfo>

    Example

    const validityResult = await ix.util.getUp("<GUID>").checkValidity();

    // example of `validityResult` - field is required, but was not filled
    ValidationInfo {
    valStatus: false,
    valMessage: 'Please make a selection',
    valType: 'required'
    }
  • Disables the control.

    Returns void

  • Enables the control.

    Returns void

  • Gets a list of all radio elements.

    Returns NodeListOf<HTMLInputElement>

  • Gets the value of the selected input element (the checked radio).

    Returns string

  • Checks if the control is enabled or not

    Returns boolean

  • Selects the radio button with the given value.

    Parameters

    • value: string

      The value of the radio button to select.

    • Optional settings: {
          triggerOnchange: "disabled" | "strict" | "always";
      }
      • triggerOnchange: "disabled" | "strict" | "always"

    Returns void