How to Open Zoho Creator Forms in Popup Windows from HTML Buttons

Opening a Form in Popup Mode from an HTML Button in Zoho Creator

The Challenge

When embedding buttons on a Zoho Creator page using HTML, you might want to open a form in a popup window when the button is clicked. Simply using an <a> tag with zc-popup attributes doesn't always produce the expected popup behavior.

Idea
Solution: Use Page Redirection with the openUrl() Function

To reliably open a form in popup mode, follow this two-step approach:

Step 1: Create an Intermediary Page with openUrl() Function

  1. Create a new page (e.g., "OpenScript") that contains a Deluge script with the openUrl() function
  2. Configure the function to open your target form with any required parameters
  3. Example script for your intermediary page:
openUrl("#Form:Scripts_Notes?CID=" + input.CID + "&Type_field=" + input.Type, "popup window", "width=800px,height=600px");

In your HTML button or link, reference the intermediary page instead of the form itself:

<a href="#Page:OpenScript?CID=<%=prov.ID%>&Type=<%=type.ID%>" class="add-note-btn">
    <i class="fas fa-plus"></i>
    Add Script
</a>

How It Works

  1. When a user clicks the button, it opens the intermediary page
  2. The intermediary page executes the openUrl() function
  3. The openUrl()
     function then opens the actual form in a popup window with the specified parameters

Notes

Important Notes

  • Make sure all required parameters are passed correctly between pages and forms
  • You can customize the popup dimensions in the openUrl() function's third parameter
  • This approach works because the openUrl()
     function has direct access to Zoho Creator's internal methods for handling popups

By using this approach, you can ensure consistent popup behavior for forms accessed from HTML buttons in your Zoho Creator applications.