Blog categorized as Zoho Creator

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

Style based URLs for Embedded Forms & Reports Zoho Creator 

08/21/2024 11:32 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...

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