Blog tagged as Deluge

Creating Invoices from CRM Deals module

01/17/2024 12:16 PM - By Jesus Sosa - Comment(s)

deal = zoho.crm.getRecordById("Deals",dealid);

accountlookup = deal.get("Account_Name");
crm_accountid = accountlookup.get("id");
crm_accountname = accountlookup.get("name");
books_organizationid = "XXXXXXXX";
books_contactcriteria = {"contact_name...

Zoho Creator Navigational URLs

12/18/2023 10:51 AM - By Jesus Sosa - Comment(s)
Listed below are the URLs that are used to navigate or do certain actions in Zoho Creator. Please note that all these URLs will work only within the application and not in permalinks and embedding.

S. NoURLDescription
1#Script:page.backNavigates to the previous URL loaded in the browser's location bar...

Style based URLs for Embedded forms 

12/18/2023 10:51 AM - By Jesus Sosa - Comment(s)

In this topic we list out the parameters used in customizing the look and feel of Zoho Creator forms and reports. These parameters can be applied to the Forms and Reports embedded in your Pages.

Form Properties

DescriptionParameter/Value
Display form without form headerzc_Header=false
Form background co...

Pause a Deluge code for 'X' seconds

12/11/2023 11:20 PM - By Jesus Sosa - Comment(s)
Sleep can be used in a Node JS function, such as below
  1. /**

    * author: vincent.balfe@cloud-connect.ie

    * @param seconds: literal - to be converted to ms

    * @return JSON IO - SUCCESS or FAIL

    */

    module.exports = async ...

Create an HTML Table in Zoho Creator Using Deluge and Notes

11/30/2023 09:19 PM - By Jesus Sosa - Comment(s)

In a Zoho Creator application, an HTML table is a helpful way to display a list, such as appointments, inventory, or contacts to external users. Clickable links and buttons can be included in the table rows to add navigation functionality, like clicking the email link to open an email client, or an ...