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

How can I send subform details in an email ?

To send subform data in an email, you can iterate the subform data and concatenate with the message of an email. Please find the sample code format given below:

  1. message= “Details of the data added ”;
  2. for each item in <F

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 Delete ->On Success

On Delete ->On Success, as the name suggests is executed after a record is successfully deleted. You can write your own script block in this part, like sending an email (openUrl is not supported here).


How to reach the On Delete ->On Su