Passing parameters to Zoho Creator components via URL is possible. The below article explains how it is done for different components.
- Form fields
Form fields can accept parameters via URL. See this Form. The Form has a Name field an
…
Passing parameters to Zoho Creator components via URL is possible. The below article explains how it is done for different components.
Form fields can accept parameters via URL. See this Form. The Form has a Name field an
…
…
On Update is a field action that triggers a script when a field value is modified. Note that this section is executed only if the field value has been successfully edited.
…
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, 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).
…
On Delete ->On validate section validate before deleting any records from the database.
…
On Edit ->On Success section in Deluge is used to execute script actions after a record is updated in the database. Sending an email, opening a new page are some examples.
…
On Edit ->On Load script section in Deluge is executed immediately after the Edit Form loads.
…
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…
On Add ->On Success section in Deluge is used to execute script actions after a record is added to the database. Sending an email, opening a new page are some examples.
…