FAQs - Forms
- How can I segregate Form fields into different sections?
Ans: This can be done by using the "Add Notes" field type, which also provides rich text formatting options for a better outlook. - How can I display custom error messages based on user input to your form?
Ans: This "Sample Application" demonstrates how to display custom error messages based on user input, using Deluge scripting. - How can I tackle the issue of limited fields allowed in a Form?
Ans: To tackle this issue, you can split your Forms. This "Sample Application" demonstrates how to split Forms. In this Application, fields have been distributed into 3 Forms. After submitting Form 1, user is redirected to Form 2 which will automatically fetch customer name from Form 1. Similarly, after submitting Form 2, user is redirected to Form 3 which will also contain the same customer name. In this way data can be submitted by the same user using 3 different Forms to avoid maximum fields limitation for a single Form.Form 1 has the following fields:
- Name
- Sample field 1
- Sample field 2
- Sample field 3
On-Success script written in Form 1:openUrl("http://creator.zoho.com/sampleapps/split-forms/#Form:Form2?Customer=" + input.Name,"same window") ;
// redirects to Form 2 after submission
// Customer name in Form 2 is pre-setForm 2 has the following fields:
- Customer
- Sample field 1
- Sample field 2
- Sample field 3
On-Load script written in Form 2:disable Customer;
//Customer name cannot be modified
On-Success script written in Form 2:openUrl("http://creator.zoho.com/sampleapps/split-forms/#Form:Form3?Customer=" + input.Customer,"same window")
// redirects to Form 3 after submission
// Customer name in Form 3 is pre-setForm 3 has the following fields:
- Customer
- Sample field 1
- Sample field 2
- Sample field 3
On-Load script written in Form 3:disable Customer;
//Customer name cannot be modified - Can I insert hyperlinks in a form?
Ans: Yes. Click here to learn more.