textArea

This is a standard HTML textarea input field.

Special properties of field

Usage

{
    type: "textArea",
    label: "Biography",
    model: "bio",
    hint: "Max 500 characters",
    max: 500,
    placeholder: "User's biography",
    rows: 4,
    validator: validators.string
}

Last updated