- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 11:08 AM
there is a 40 character limit set for a tooltip for a form or variable field.
how is this limit exceeded?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 11:10 AM
after looking into trying to update the element html with a client script, decided to try adjusting the dictionary on the tooltip field with a bumped up character limit like 200.
it worked like a charm! 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 11:10 AM
after looking into trying to update the element html with a client script, decided to try adjusting the dictionary on the tooltip field with a bumped up character limit like 200.
it worked like a charm! 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2025 11:13 AM
@JamenW there are ways to do
1. Use a UI Policy with an Info Message
Instead of relying on the tooltip, you can display a longer message using a UI Policy with an Info Message:
• Create a UI Policy on the form.
• Set the condition based on when the tooltip should appear.
• Add an Action to display a message (g_form.addInfoMessage('Your longer message here');).
2. Use a Client Script to Show a Longer Tooltip
You can override the tooltip using JavaScript in a Client Script:
g_form.getElement('your_field_name').title = "Your longer tooltip message here";
✔️ If this solves your issue, please mark it as Correct.
✔️ If you found it helpful, please mark it as Helpful.
—
Shubham Jain
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2025 05:49 AM
tried the client script with no luck.
I see the html tooltip tag is "data-original-title" where the text is in the html output.