Select Page

Formidable number field Cheat sheet

Learn all about Formidable Forms number field in this Cheat sheet.

Field Type – Number
This number field requires a value. If no value provided, there will be a validation error message (customizable). The default “required field indicator” is * (customizable).
This is a read-only number field. User can’t type any values here. However, a value can be set indirectly using “Default Value” in field settings or programmatically.
This field only allows a number between 10 and 20
This field only allows odd numbers.
For odd numbers, set step size to 2 and starting value to 1
For even numbers, set step size to 2 and starting value to 0
This number field’s value increases by one for each new entry. The start value (for the first entry) can be customized. For more details, Click here
This field shows a value between 0 and 100. For details, click here
This field always shows 2 decimals. If you type more than 2 decimals, it will round it off
By combining step size, number range and default value, allowed values can be further restricted.
For example, this number field allows a value between 0 and 1 in 0.1 increment
$
This requires “Bootstrap” add-on
%
This requires “Bootstrap” add-on

Calculated field

Change the price to see GST and Total price calculations
You may not believe but this is a number field and its value will be saved in Formidable entries. It looks like a label due to “frm_total” CSS. This is very useful for read-only fields like this one.

Formidable paragraph field Cheat sheet

Learn all about Formidable Forms paragraph field in this Cheat sheet.

Field Type – Paragraph
This paragraph requires a value. If no value provided, there will be a validation error message (customizable). The default “required field indicator” is * (customizable).
This is a read-only paragraph. User can’t type any values here. However, a value can be set indirectly using “Default Value” in field settings or programmatically.
The default value can be a fixed value or derived from other fields values
This paragraph has a height of 10 rows (customizable). If there are more than 10 rows of content, there will be a scrollbar to view the rest of the content.
This paragraph allows only 10 characters. There are no field settings for this. Instead, this requires changes in HTML. For more details, Click here
For details, Click here
For details, Click here

Formidable text field Cheat sheet

Learn all about Formidable Forms text field in this Cheat sheet.

Field Type – Text
This text box requires a value. If no value provided, there will be a validation error message (customizable). The default “required field indicator” is * (customizable).
This is a read-only text box. User can’t type any values here. However, a value can be set indirectly using “Default Value” in field settings or programmatically.
This text box requires a unique value. If an existing value is submitted (e.g. Apple), there will be an error message (Customizable).
The default value can be a fixed value or derived from other fields values
This text box allows max 5 characters
An input mask format guides the user to type field value as per the specified format. Use the “Required” field settings to make the format mandatory.
e.g. This text box requires the value to be formatted as 1 (999)-999-9999 ext. 99?9
Use RegEx for complex formats. RegEx pattern doesn’t add an input mask, instead it validates the format when field becomes out of focus or during form submission.
e.g. This text box only allows lowercase characters from a to e.
RegEx: ^([a-e]+)$
This text box will capitalize the first letter of each word. Use “frm_capitalize” CSS class to enable this format.