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.
To reliably open a form in popup mode, follow this two-step approach:
openUrl()
functionopenUrl("#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>
openUrl()
functionopenUrl()
function then opens the actual form in a popup window with the specified parametersopenUrl()
function's third parameteropenUrl()
function has direct access to Zoho Creator's internal methods for handling popupsBy using this approach, you can ensure consistent popup behavior for forms accessed from HTML buttons in your Zoho Creator applications.