Blog tagged as Coding

Pre-populating a subform with Client Script in CRM

09/27/2024 04:58 PM - By Jesus Sosa - Comment(s)

This code below is an example to to use client scrip to auto pre-populate a Subform with rows fill dynamically within CRM using Client Scrips



/** 
 * log("sample logging statement") --> can be used to print any data in&...

Send Secure Transactional Emails via API from Zoho ZeptoMail

09/05/2024 01:22 PM - By Jesus Sosa - Comment(s)
remision_url = "https://www.zohoapis.com/books/v3/invoices/"+invoice_ID+"?accept=pdf&organization_id="+Org_ID;

download_file = invokeurl

[

url :remision_url

type :GET

connection:"books_all"

];

encryptedFile = zoho.encryption.base64Encode(download_file);

// Create the "...

Creator Page Auto Refresh and sends and received data internally or externally with RealTime Updates

08/21/2024 12:49 PM - By Jesus Sosa - Comment(s)

Steps to Simply Auto Refresh a Page:

  1. Use the following meta tag in the <head> section of your html page snippet in Creator where your Forms, Reports, Views, Dashboards, and anything is located:
    <meta http-equiv="refresh" content="5" > 
  2. Apply the following configurations:
    • ...

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