HybridForms API
    Preparing search index...

    Base class for all kendo based form controls. Kendo based form controls are:

    Hierarchy (View Summary)

    • KendoBase<kendo.ui.NumericTextBox>
      • NumericField
    Index

    Constructors

    Properties

    defaultValue: number

    The default value of the control.

    disableOpenDialog: boolean

    Hides spinners and disable dialog opening on mobile devices

    disposed: boolean
    element: HTMLElement
    enabled: any
    label: string
    labelEl: JQuery<HTMLElement>
    onChanged: (value: any) => void
    options: any
    required: boolean
    startValue: number

    The starting value of the control

    tooltip: string
    visiting: boolean = false

    Accessors

    • get currentInputCtrl(): ComboBox

      On mobile or small devices a dialog opens when the user clicks on the control. If this dialog is open, the dialog control is returned; Otherwise the main control is returned. For the API of the kendo ui control see https://docs.telerik.com/kendo-ui/api/javascript/ui/

      Returns ComboBox

    Methods

    • Deletes the all fields related to the form control.

      Parameters

      • name: string

        The field id.

      Returns Promise<any>

    • Disables the form control.

      Returns void

    • Disposes the form control.

      Returns void

    • Enables the form control.

      Returns void

    • Returns any

      all fields and values that are connected with the the form control.

    • Gets the default value auf the form control, if it is set.

      Returns any

    • Gets the PostfixFieldId. Relevant for operations in repeating units. Check first, if the form control is contained in a repeating unit, see: isRepeatingUnit.

      Returns string

    • Hide FormControl

      Parameters

      • animate: boolean = false

        En/Disable animation

      • lock: boolean = true

        Enable lock of hidden FormControl to not process control with condition

      Returns void

    • Checks if the form control is included in a repeating unit.

      Returns boolean

    • Sets the field value of the form control. Be careful: This does not update the UI. In most cases it is better to use the val() method, see: val

      Parameters

      • value: any

        The value of the field

      Returns number

    • Set additional options to kendo controls.

      Parameters

      • options: any

        New options to set.

      Returns void

    • Sets a new label value.

      Parameters

      • value: string

        The value to set.

      Returns void

    • This function sets the unit of the input field.

      Parameters

      • format: string

        The format of the input. Set to empty string to remove the unit.

      • Optionalplaceholder: string

        The placeholder text to display when the input is empty.

      Returns void

    • Sets any field value by providing its id.

      Parameters

      • id: string

        The id of the field.

      • val: any

        The value of the field. Data type is an object. Its structure depends on the specific field type.

      Returns number

    • Show hidden FormControl

      Parameters

      • animate: boolean = false

        En/Disable animation

      • unlock: boolean = true

        Disable lock of hidden state to process control with condition

      Returns void

    • Gets or sets the value of the NumericField control.

      Parameters

      • Optionalvalue: number

        [optional] If provided, the value of the NumericField control gets set.

      • disableOnChanged: boolean = false

        [optional] Disables the onChanged callback if set to true. Necessary if an onChanged-Handler wants to change itself.

      Returns number