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…
The method of filtering a multi-select field is very similar to dynamically filtering single-select dropdowns as described here. However, the problem with filtering a multiselect is that when you edit the record the filtered list is not …
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…
Many a times, when you are developing an application, you may need
to get the value(s) entered for the fields in the form. To get
the particular value, you can do so in Deluge Script, using the statement:
input.<Field Name>
For ex, if yo…