How can i add a help text under the checkbox
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2021 12:43 AM
Hi ,
I have to add a help text under a checkbox .but i see no help tag option in there . I tried using the addinfomessage but the look isnt coming good.
Any other suggestions to achieve this.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2021 12:50 AM
Hi,
You can use g_form.showFieldMsg.
Please mark Correct✅/helpful???? if applicable, thanks!!
Aman

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2021 02:40 AM
Thanks,
Aman
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2021 02:48 AM
As mentioned in KB article shared by Aman Help text is not supported for Checkbox variables.
Adding to Aman's point.
You can use field message via onChange Catalog client script to show the field message always
Catalog Client Script: onChange of that checkbox
UI Type - ALL
Applies to Catalog Item View - True
function onChange(control, oldValue, newValue, isLoading) {
var message = 'Your message here';
g_form.showFieldMsg('variableName', message,'info');
}
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
‎05-03-2021 03:49 AM
Hope you are doing good.
Did my reply answer your question?
If so, please mark appropriate response as correct & helpful so that the question will appear as resolved for others who may have a similar question in the future.
If not, please let us know if you need some more assistance.
Thanks!
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader