Passing Parameters via URL

Passing parameters to Zoho Creator components via URL is possible. The below article explains how it is done for different components. 

  1. Form fields

    Form fields can accept parameters via URL. See this Form. The Form has a Name field an

On User Input

On User Input is a field action that triggers any script once a field value is given/modified. Note that this section is executed in the Same page before submitting the Form data. You would see a spinning wheel immediately once the scr

How to get the Deluge name of a field

Deluge field names are often used in the following places.
  1. In the script
  2. To set values for the form field via URL
  3. To filter records from the View via URL
You can get all the applications/forms/fields deluge names. For this, you c…

How to convert Date format in Deluge Script

To convert the date format from “dd-MMM-yyyy” to “yyyy-MM-dd”, change the string with first format to date. Then convert that date object to a
string specifying the second format. The below is the sample functi…

How can I display custom error messages in my form?

About the Application

A Note field is used
to display text or images that guide the user while filling the form. This field will not be displayed in the View. You can display custom
error messages in the Note field based on user input, using Del…