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 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.
…
On Add ->On Validate section in Deluge is used to write the Form validation scripts. You can check for field values and tell the user to enter the right value. This part is executed after user clicks on the Submit button and before adding th…
On Add ->On Loadscript section in Deluge is used to execute your custom Deluge scripts when you add a record through a Zoho Creator Form. This part is executed immediately after the Form loads.
…
Yes, with Deluge Scripting you can lock a record that is being edited as described in the steps given below:
1. Create a Form, for example, with name “LockedID” with a number field to store the ID number of the recor…