As detailed in
this community discussion, Zoho Creator's
zc_LoadIn parameter is a vital tool for opening components (forms, reports, or pages) in modal dialogs via HTML snippets, Notes, or Rich Text Fields. While powerful, this feature suffers from a critical deficiency when applied to Report components.
The Problem
Per the
official zc_LoadIn documentation, developers can invoke a popup dialog using the standard URL parameter:
// Standard usage in HTML Snippets or Rich Text
<a href="https://creator.zoho.com/yourapp/report-name?zc_LoadIn=dialog">Open Report</a>
// Usage with Forms and Pages (currently functional)
<a href="https://creator.zoho.com/yourapp/form-name?zc_LoadIn=dialog">Open Form</a>
<a href="https://creator.zoho.com/yourapp/page-name?zc_LoadIn=dialog">Open Page</a>
The critical flaw is the inability to define popup dimensions for Reports. The dialog enforces a fixed, immutable width and height. This static sizing ignores the content's actual layout, resulting in a broken user experience for data-rich views:
| Report Scenario |
Technical Conflict |
UX Impact |
| Multi-Column (Wide) Reports |
Viewport is narrower than the data grid |
✗ Horizontal scrollbars obscure key metrics |
| High-Volume Vertical Data |
Viewport height is insufficient for pagination |
✗ Excessive vertical scrolling required |
| Drill-Down Actions |
Opening a Detail View inherits the restricted parent frame size |
✗ Record details are cramped and unreadable |
Observation: Forms opened via zc_LoadIn generally adapt well to the default modal size. This issue specifically targets Reports, where data density and layout requirements vary drastically between use cases.
Current Workarounds (and why they fail)
Due to the lack of native dimension parameters, developers are forced to rely on suboptimal implementation strategies:
| Strategy |
Implementation |
Drawbacks |
Verdict |
| Abandon Popup Mode |
Open reports in a standard new browser tab/window |
- Breaks the application flow
- Increases browser tab clutter
- User loses context of the parent page
|
✗ Degrades User Experience |
| Layout Compromise |
Remove columns to fit the fixed modal width |
- Reduces data visibility
- Hides critical business intelligence
- Artificial limitation on report design
|
✗ Sacrifices Data Value |
| Iframe Injection |
Use zc_LoadIn=iframe instead of dialog |
- Loses the "overlay" modal behavior
- Still lacks native dynamic resizing
|
⚠ Inconsistent Behavior |
| HTML Page Recreation |
Rebuild the report using HTML/Deluge on a Page |
- High development overhead
- Loss of native features (Search, Filter)
- Creates technical debt and maintenance drag
- Styling must be manually maintained
|
✗ Inefficient & Costly |
Proposed Solution
Feature Request:
We request the addition of optional parameters to the zc_LoadIn syntax that allow developers to define the modal's viewport size:
// Proposed Syntax 1: Pixel-based definitions
<a href="...?zc_LoadIn=dialog&zc_DialogWidth=1200px&zc_DialogHeight=800px">
View Report
</a>
// Proposed Syntax 2: Percentage-based definitions (Responsive)
<a href="...?zc_LoadIn=dialog&zc_DialogWidth=90%&zc_DialogHeight=90%">
View Report
</a>
// Proposed Syntax 3: Preset Classes
<a href="...?zc_LoadIn=dialog&zc_DialogSize=maximized">
View Report
</a>
// Options: small, medium, large, full-width
Alternative Logic: If URL parameters are not feasible, please allow developers to configure the "Default Popup Dimensions" within the Report Properties menu in the builder interface.
Business Impact
The inability to size popups negatively impacts critical workflows:
- Embedded Related Lists: Viewing "Related Transactions" is impossible without horizontal scrolling.
- Audit Trails: History logs with timestamp/user/action columns get cut off.
- Cross-Functional Reports: Tables joining data from multiple modules become unreadable.
- Approval Dashboards: Managers cannot see all decision-relevant columns in the review popup.
- Client Portals: External users are presented with a cramped, unprofessional interface.
Developer Consequence: We are forced to choose between a clean UI (no popups) or a streamlined workflow (popups with bad UI). This is a choice we should not have to make in a low-code enterprise platform.
Request to Zoho Product Management
Can this enhancement be prioritized for the upcoming release roadmap?
The zc_LoadIn feature is a fantastic concept, but the fixed-dimension constraint renders it nearly unusable for complex reporting needs.
Currently, the developer experience is split:
1. Use zc_LoadIn
Result: Fast workflow, but broken/cramped UI.
|
2. Avoid zc_LoadIn
Result: Clean UI, but disjointed/slow workflow.
|
This creates a friction point in otherwise polished applications.
Summary Request: Enable zc_DialogWidth and zc_DialogHeight (supporting px and %) to provide developers full control over the modal viewport.
Community Feedback: If you are struggling with fixed-size report popups, please comment below with your use case to help the Zoho team understand the scope of this requirement.
Recent Topics
Error 400 Booking
Added a custom domain to Booking. Am Getting a SSL Error that has some other domain on the SSL and giving a 400 error. Followed instructions and it stated it verified our domain.. However it is not working. Please Help!
Error AS101 when adding new email alias
Hi, I am trying to add apple@(mydomain).com The error AS101 is shown while I try to add the alias.
New feature request: Allow copy of email message to another folder
Hello Zoho team, This is a suggested new feature to allow copy an email message to either another folder or the same folder. Within the same Zoho account. This is not a support request about "label". This is a suggested new feature to allow copies of
Link Purchase Order to Deal
Zoho Books directly syncs with contacts, vendors and products in Zoho CRM including field mapping. Is there any way to associate vendor purchase orders with deals, so that we can calculate our profit margin for each deal with connected sales invoices
Zoho Projects - Email Notifications for Feed Updates
Hi Projects Team, I'm working with a client who wants a simple way to communicate with their customers on projects. Getting the customer to add comments to Tasks or Bug records is not ideal, as we need a way which is easy with minimal training, and has
Zoho Analytics Export API
Hi Team, I’m working on some integration tasks and wanted to confirm if it’s possible to retrieve a Zoho Analytics table as JSON data using a Deluge script. I’ve already stored my custom data from multiple sources and combined it into a single source.
Loading Project Balances in ZOHO Books for each project
Hello, What is the best method for loading project balances actual and budget into ZOHO books to provide tracking to our project managers. We have projects and federal awards (also treated as projects) which span multiple years. We are converting from
Request to Remove LinkedIn Verification from My Emai
I would like to submit a complaint regarding my Zoho Mail account. I previously used this email address to verify a LinkedIn account, but that LinkedIn account has now been closed. I need to remove or cancel the verification associated with the closed
Introducing the all-new email parser!
Greetings, We are pleased to introduce to you, a brand-new, upgraded version of the Zoho CRM Email Parser, which is packed with fresh features and has been completely redesigned to meet latest customers needs and their business requirements. On that note,
Zoho Projects - Refine Access to Collaboration Menu
Hi Projects Team, I noticed that Calendar, Chat and Meeting menu options in the Collaboration section are visible to client users, even when they don't have access to the features. This could be confusing and frustrating, because if it's there you expect
Kaizen #217 - Actions APIs : Tasks
Welcome to another week of Kaizen! In last week's post we discussed Email Notifications APIs which act as the link between your Workflow automations and you. We have discussed how Zylker Cloud Services uses Email Notifications API in their custom dashboard.
Extracting Images from a Zoho Creator Report into a Pages
If you’ve uploaded images in a form and can see them in your report, you might also want to display those same images inside a Page (custom HTML page). This is useful for dashboards, profile pages, or any place where images should be visible dynamically
Zoho is blocking emails I subscribe to from one sender
About 4 months ago I stopped receiving newsletters that I subscribe to from @thedispatch.com. They tell me that zoho's server is blocking them. I've added them to my contacts list, but they're not even reaching my inbox. I don't know how to troubleshoot
Introducing Formula Fields for performing dynamic calculations
Greetings, With the Formula Field, you can generate numerical calculations using provided functions and available fields, enabling you to derive dynamic data. You can utilize mathematical formulas to populate results based on the provided inputs. This
Inactive Items - Make Less Prominent by Default
Currently, when one marks an Item as "Inactive", it really doesn't do much of anything to hide it or get it out of the way. Search and reporting within Finance should, by default, hide inactive Items from standard reports, searches, etc. If one specifically
Items should display under specific warehouse
I have configured the multi warehouse but it show all the items under all warehouse which is not correct according to our business logic, so i want that items should only display under that specific warehouse not under all the warehouses not even with zero quantity. Some items should be common but not all so is there any option for that purpose so i can specific the items to its warehouse. Regards
How to calculate GST based on "Ship To Address"
We into the interior designing work, providing "Works Contract Services" to our clients across India. We are registered under GST in Maharashtra state. For works contract services as per the GST rule, we need to decide place of supply based on "Ship to
I NEED TO NUMBER TO TEXT NO HERE
=NUMBERTEXT NEEED
Auto-fill New Row with Previous Row Values
rowsize = input.Order_Items.count();
for each row1 in input.Order_Items
{
rowsize = rowsize - 1;
if(rowsize == 1)
{
row.Door_Model = row1.Door_Model;
row.Door_Color = row1.Door_Color;
row.Materials = row1.Materials;
When I click on PDF/PRINT it makes the invoice half size
When I click PDF / Print for my invoice in Zoho Books, the generated PDF appears at half size — everything is scaled down, including the logo, text, and layout. The content does not fill the page as it should. Could someone advise what causes Zoho Books
Python - code studio
Hi, I see the code studio is "coming soon". We have some files that will require some more complex transformation, is this feature far off? It appears to have been released in Zoho Analytics already
API question - adding a thread to an existing ticket
Hi Is there an API function for the customer to add to an existing ticket thread? example, customer puts in new support ticket. support replies and ask for more details. customer replies with more details -what api function is used for this (will add record append to same ticket number?) Thanks
Why is Zoho Meeting quality so poor?
I've just moved from Office 365 to Zoho Workplace and have been generally really positive about the new platform -- nicely integrated, nice GUI, good and easy-to-understand control and customisation, and at a reasonable price. However, what is going on
Items Below Reorder Point Report?
Is there a way to run a report of Items that are below the Reorder Point? I don't see this as a specific report, nor can I figure out how to customize any of the other stock reports to give me this information. Please tell me I'm missing something s
Calendar week view: Today + 6
Is there anyway to have the calendar change dynamically based on the date? Due to the amount of events, we only display a week at a time, but towards the end of the week, we can no longer see ahead to next week (without changing it manually every time).
How to restrict user/portal user change canvas view
Hi , I would like to restrict user / portal user change their canvas view because I hide some sensitive field for them. I dont want my user switch the canvas view that do not belong to them But seems Zoho do not provide this setting?
Introducing parent-child ticketing in Zoho Desk [Early access]
Hello Zoho Desk users! We have introduced the parent-child ticketing system to help customer service teams ensure efficient resolution of issues involving multiple, related tickets. You can now combine repetitive and interconnected tickets into parent-child
How to add to Subforms via Zapier with Zoho Writer?
I have the following layout for a Zoho Writer Document. As you can see there is a repeating subform taking in "Items". I am trying to make a Zapier integration with it, and I can see there is 1 field saying: "Items", but it does not specify how I'm supposed
Contrôles administratifs granulaires : un atout pour la sécurité des e-mails
La moindre erreur dans votre système de messagerie peut coûter très cher à votre entreprise, tant en argent qu’en conformité et en image de marque. Pour beaucoup d’organisations, ce risque est bien réel. Les e-mails véhiculent quotidiennement des informations
Marketer's Space: Why mobile optimization deserves a place in your email strategy
Hello Marketers, Welcome back to Marketer's Space! Today, we'll talk about the importance of creating mobile-friendly email designs. While mobile phones were once used only to make phone calls, today they're used for almost everything, including texting,
Collections Management: #6 Realign Customers who gets back In-Term
Arun stared at the subscription list on his dashboard. Another account had just been moved to Cancelled status after completing the whole dunning process. Nothing unusual, just that payment failures happen, retries fail, and cancellation is the expected
Zoho Mail IP Blacklist
I need problems with send mails: Error: junk mail rejected - sender4-op-o10.zoho.com 136.143.188.10, is in RBL. Spamcop. Please remove FQDN for blacklist. Regards.
I can receive but not send emails
Hello, I've been not able to send emails for almost a year now. I been using alternate email to do this. I want to know how to fix this so I can use my zoho account normally again.
The challenge of 24/7 connectivity: Being present and meeting customer expectations
Before television entered our homes, radio was our window to the world. We had to tune carefully to catch voices from distant places. When television arrived, the world began to grow smaller. We can watch rocket launches, see the goal that wins our favorite
How to download all attachments from inbox, send, other folders in one go
Hi All, Appreciate if anyone could help me with steps for below requirement. How to download all attachments from inbox, send, other folders in one go. Even mapping to new folder will help me. Thanks in advance.
Cannot connect mail accounts to Thunderbird
Hi Support - I'm attempting to add my mail accounts to Thunderbird but I'm getting an unable to login to server error. I tried to use the password associated with my account I received the unable to login error. So I went into Zoho Accounts and generate
Alias Email Id already exists
Hi, I just verified my domain sesque (dot) com and now I am trying to create the admin account using admin (at) sesque (dot) com, but I am getting an error saying "Alias Email Id already exists". I used to have another Zoho account with this email address,
Unable to connect to smtp server, connection timed out
Hi Team, I am facing below issue, while sending out emails from thunderbird client. It used to work, facing this issue from morning. Error: Sending of the message failed. The message could not be sent because the connection to Outgoing server (SMTP) smtp.zoho.com
javax.mail.authenticationfailedexception 535 authentication failed
Hi, I am facing 535 authentication failed error when trying to send email from zoho desktop as well as in webmail. Can you suggest to fix this issue,. Regards, Rekha
Zoho Creator customer portal users
Hi, I'm in a Zoho One subscription with our company. I'm running a project now that involves creating a Zoho Creater application and using the Zoho Creator Customer Portal. At most we need 25 customer portal users. In our Zoho One plan we only get 3
Next Page