Fields
Name | Display type | Description |
---|---|---|
Textfield | text | For input text-field |
Password | password | For input password field |
For email field | ||
Currency | currency | For currency field |
Radio | radio | For form radio fields |
Select | select | For fields with many options |
Multitext | multitext | For input text fields with multiple lines/rows |
Hidden | hidden | This field will be hidden |
Date | date | For calendar dates |
Input mask | input-mask | For fields with filtered formats |
File | file | For uploading files/images |
Usage
Use displayType
property in the schema to define a given field type
For example
{ "fields": [ { "name": "first_name", "meta": { "displayType": "text", "displayName": "First Name" } }, { "name": "email", "meta": { "displayType": "email", "displayName": "Email address" } } ]}