Blog

Responsive iFrame for HTML Page Snippet in Creator Pages

02/21/2024 11:36 AM - By Jesus Sosa - Comment(s)

The code below is a single <div> containing a single iFrame/Report. 

  1. <style>
  2. .parent-container {
  3. display: flex;
  4. width: 100%;
  5. height: calc(100vh - 120px);
  6.  }
  7. .child-container {
  8. flex: 1;
  9. margin: 10px;
  10. }
  11. </style>
  12. <div>
  13. <iframe src="https://creatorapp.zoho.com/App_Admin/App_...

How to create Mass Acction Custom Buttons in CRM with Deluge functionality

01/25/2024 06:30 PM - By Jesus Sosa - Comment(s)
The "rec" is the collection variable for IDs

idlist = rec.toList("|||");
//
for each  record in idlist
{
    unirque_record_ID = record ;
}
//

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...