Frequently Asked Questions
[for more topics please visit our support forum]
What kind of validation is supplied?
The vaildation supplied with your form is JavaScript and is triggered prior before the submit event. It only checks the fields that you have selected as "Required" and, with the exception of any Email input fields, only checks for empty or no inputs.
How do I setup for Email validation?
To create an Email Address input field and have its content validated as a valid Email Address is simple. Just create a text input field and as a field name, use the word "email" in the first part of the name.
Examples of field names that will trigger an email validation:
email
email1
Email2
EmailAddress
EmailConfirm
Any of the above will cause this form generator to produce the necessary JavaScript code to valid its value.
Can I have multiple Email inputs?
Of course. Simply use different variations of "email" names for the fieldnames. Such as:
email1
email2
(See question & answer #2 above).
What is "Form Processing"?
Form processing is the method in which the data entered into your form is handled. A form processor is a script that will parse the information from the form's input fields and deliver it accordingly - email, database, another form, etc.
Form processors come in many different applications and scripting languages. However, if you're not so inclined to be bothered by trying to understand php or perl, then you may want to use a remotely hosted form processor. These are sites that just do form handling. Please see our Help documents and visit our support Forum for more information.
How can I change the font style on my form?
If you know a little bit about CSS then you can set the following classes to any style you wish:
ftbl_row_1
ftbl_row_1a
ftbl_row_2
ftbl_row_2a
By studying your forms html code, you'll notice that the Displayed Input names are on the left (ftbl_row_1,ftbl_row_2) and the input controls are on the right (ftbl_row_1a,ftbl_row_2a). Here is an example of styling the form to a font in Arial, size 12px, and color of blue:
.ftbl_row_1,.ftbl_row_1a,.ftbl_row_2,.ftbl_row_2a{
font-family:arial;font-size:12px;color:blue;}
To right align just the Displayed Names:
.ftbl_row_1,.ftbl_row_2{text-align:right;}
Of course, you may delete the class names altogether and simple put "font face='arial'", etc.
Can I save my form and finish it later?
No. However, you may take as long as you like to complete the form. Your form's data is temporarily stored on our server until you either reset the form, leave our site, close your browser, or log off the Internet. You may browse around the FormGenics site while composing your form without worrying about losing your data.