Interface NumberInputOptions

interface NumberInputOptions {
    disabled?: boolean;
    form?: string;
    label?: string;
    labelFirst?: boolean;
    max?: number;
    min?: number;
    name?: string;
    placeholder?: string;
    step?: number;
    title?: string;
    type?: string;
}

Hierarchy

  • FormInputOptions
    • NumberInputOptions

Properties

disabled?: boolean

Whether the form control is disabled

form?: string

Associates the control with a form element

label?: string

Set an initial label text. This can be overwritten.

labelFirst?: boolean

Determine if the label should appear before the control.

max?: number
min?: number
name?: string

Name of the form control. Submitted with the form as part of a name/value pair

placeholder?: string
step?: number
title?: string

Display a tooltip when the mouse is hovering over the control.

type?: string

Type of form control

MMNEPVFCICPMFPCPTTAAATR