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

On Edit ->On Validate

On Edit ->On Validate section in Deluge is used to write the Form validation scripts when a record is edited. You can check for field values and tell the user to enter the right value. This part is executed after user clicks on the Update but

How is file upload URL constructed?

The url pattern for file download is as follows:

  1. “https://creatorexport.zoho.com” + zoho.appuri + “viewLinkName/fieldDelugeName/download/” + fieldDelugeName
  • zoho.appuri is the zoho variable&

What is a record

A record in Zoho Creator is created every time you submit a Form. For example, if you have a Student’s Form with Name, Email, Telephone and Address and submit it, Zoho Creator will create a record. Record will be the row of

What is a record ID?

Record ID is a unique number generated by the Zoho Creator system for every record that has been added to the database. Usually it will be a 18 digit number ( eg:272719000003479011 ). 

This number can be displayed in Views. For this,
  1. Cli

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…