How to add a Help text on the choices of variable when it is hovered?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2022 08:25 AM
I want to show a help text on the choices of a variable when I hover it. I have done it for the incident fields but now I need it for catalog item variable choices.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2022 08:29 AM
Hi there,
That's not an out-of-the-box option.
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020-2022 ServiceNow Community MVP
2020-2022 ServiceNow Developer MVP
---
LinkedIn
Community article, blog, video list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2022 08:36 AM
Hi,
no direct way
But here is a workaround shared
how to show the help text for choice value in service catalog variable
If my response helped please mark it correct and close the thread so that it benefits future readers.
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-02-2022 12:00 AM
Hi Malik,
Try to write on-load client script for the incident table and please follow the below code for the onload client script.
function onLoad() {
//Type appropriate comment here, and begin script below
g_form.addDecoration('impact', 'icon-help','Please provide help text here');
}
I was able to add the help text via this method successfully. Please try this solution.
Thanks,
Chaithanya S