Jesus Sosa

Blog by Jesus Sosa

Zoho Creator URL Patterns and Custom

04/29/2024 12:04 PM - By Jesus Sosa - Comment(s)

Overview

This document lists the urls of various Zoho Creator application components like forms, views, PDF report etc. The knowledge about the url of the applications will help in providing quick access to the application and its forms, views and report formats.

Terminologies

application link name...

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