DOCS

Text field

The Text field creates a basic text input

General options

  • Field name
  • Field key
  • Placeholder
  • Description
  • Is Required
  • CSS Classes
  • Default value

Specific options

  • Suffix: Adds a suffix element over the input
  • Minlength: Minimum number of characters
  • Maxlength: Maxium number of characters
  • Pattern: Enter a regular expression that all submitted values must match.
    Only letters: [A-Za-z]+
    5-digit ZIP code: \d{5}
    Phone number (e.g., 123-456-7890): \d{3}-\d{3}-\d{4}

Continue reading