Hierarchy

  • UpNumberEditControl
    • UpFloatControl

Accessors

  • get maxLength(): number
  • Gets the maximum length of the control.

    Returns number

  • set maxLength(value): void
  • Sets the maximum length of the control.

    Parameters

    • value: number

    Returns void

  • get required(): boolean
  • Can get required status.

    Returns boolean

  • set required(value): void
  • Sets required status.

    Parameters

    • value: boolean

    Returns void

Methods

  • Checks if the value matches the regex and is in range of values.

    Returns Promise<ValidationInfo>

  • Gets the fields maximum value.

    Returns undefined | string

  • Gets the fields minimum value.

    Returns undefined | string

  • Returns the fields value.

    Returns string

  • Checks if the value is in range of values the user gives.

    Parameters

    • Optional input: string

      The value to check

    Returns boolean

  • Checks if the value is valid

    Parameters

    • Optional value: string | number

      The value to check

    Returns boolean

    Boolean if value is valid

  • Sets the fields maximum value.

    Parameters

    • value: string | number
    • options: {
          checkValidity: boolean;
      } = ...

      An object of possible options to pass

      • checkValidity: boolean

        Whether to run and report the validation (default: true)

    Returns void

  • Sets the fields minimum value.

    Parameters

    • value: string | number
    • options: {
          checkValidity: boolean;
      } = ...

      An object of possible options to pass

      • checkValidity: boolean

        Whether to run and report the validation (default: true)

    Returns void

  • Creates a local formatted string from a number object or string and writes it as value into a HTML control.

    Parameters

    • Optional input: string | number

      The local formatted string

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

    Returns void

    Important

    The conversion uses the fields localization. A string must have the matching format for a propper result!

  • Converts a number or string to a local formatted string.

    Parameters

    • input: string | number

      The given input string/number to convert to the local format

    Returns string

    A string with local formatted number or NaN.