Form Fields
Available field types and their configurations in the form builder
Fields
Our form builder provides various field types to create dynamic and interactive forms. Each field type comes with common configurations and specific options.
Common Options
All field types share these basic configurations:
Option | Type | Description |
---|---|---|
label | string | Display text above the field |
name | string | Unique identifier for the field |
required | boolean | Makes the field mandatory |
placeholder | string | Hint text shown inside the field |
Available Fields
The Email field provides a specialized input for collecting email addresses with built-in email format validation. Perfect for gathering user contact information.
available options:
fieldType
: textname
: stringplaceholder
: stringrequired
: booleanaddToContact
: boolean (default: false)
phoneNumber
The phoneNumber field is designed for collecting phone numbers. It includes a built-in phone number format validator to ensure the input is a valid phone number.
available options:
fieldType
: phoneNumbername
: stringplaceholder
: stringrequired
: booleanaddToContact
: boolean (default: false)
Text
The Text field is a basic single-line text input field. It allows users to enter text with a single line of input.
available options:
fieldType
: textname
: stringplaceholder
: stringrequired
: boolean
TextArea
The TextArea field is a multi-line text input field. It allows users to enter text with multiple lines of input.
available options:
fieldType
: textAreaname
: stringplaceholder
: stringrequired
: boolean
Select
The Select field is a dropdown menu that allows users to select an option from a list of predefined choices.
available options:
fieldType
: selectname
: stringplaceholder
: stringrequired
: booleanoptions
: array of strings (example: [“option1”, “option2”, “option3”])
File
The File field is a file input field that allows users to upload files.
available options:
fieldType
: filename
: stringrequired
: boolean
Number
The Number field is a numeric input field that allows users to enter numbers.
available options:
fieldType
: numbername
: stringplaceholder
: stringrequired
: booleanmin
: numbermax
: number