Navigating a CRM often requires leaving crucial notes or ensuring vital information reaches others accessing specific records. However, relying on static notes can be risky – they might easily be overlooked if not actively sought out. So, how can we guarantee these important messages are seen, the moment the record is opened?
Enter Pop-up Messages – These dynamic alerts appear precisely when a record is accessed, offering a direct and immediate way to communicate. Whether you need a subtle reminder or a mandatory acknowledgement, pop-ups ensure critical information doesn't get missed.
To create pop-up messages in Zoho CRM, this we will be using a client script. To get started, we'll navigate to Settings > Developer Hub > Client Scripts. Here, you'll find a button to create a New Script, which will present you with the Create Script form.
This tutorial will guide you through creating a pop-up that appears when you access a record. To achieve this, we'll be selecting Detail Page as the context and setting the trigger to on load of that page. This ensures the message appears immediately when someone opens the record.

When you click next you will be directed to the code editor where we can configure our pop-up message.
- ZDK.Client.showMessage(pop-upNoteValue, { type: 'success' }); This line will display a discrete message that appears for approximately 5 seconds with a success theme. You can customise the theme to 'info', 'warning', or 'error' to match the tone of your message.
- ZDK.Client.show This line will display an alert box that requires the user to click an "Okay" button to acknowledge the message and continue accessing the record. The content of the alert will be the value stored in the field you specified using its API Name
- Adding Titles: Provide clear context for your messages.
- Including Links: Direct users to relevant records, external resources, or internal documentation
- Formatting Text: Use bold or other styling to highlight key information within the message.

Resources
- Zoho Client Script Overview: https://www.zoho.com/crm/developer/docs/client-script/overview.html
- Zoho Client Script Documentation: https://www.zohocrm.dev/explore/client-script/clientapi/Page
- GitHub Page: https://github.com/squarelabsgit/Zoho-CRM-Dynamic-Lookup-Filtering