Interface TextInputOptions

Options for a text input control.

interface TextInputOptions {
    label?: string;
    labelFirst?: boolean;
    maxLength: number;
    placeholder: string;
    title?: string;
}

Hierarchy

  • FormControlOptions
    • TextInputOptions

Properties

label?: string

Set an initial label text. This can be overwritten.

labelFirst?: boolean

Determine if the label should appear before the control.

maxLength: number

The maximum length of the text.

placeholder: string

Text that appears in the form control when it has no value set.

title?: string

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

MMNEPVFCICPMFPCPTTAAATR