- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2025 02:26 AM
Hi,
I have a requirement to add a hint to a true/false field type. There are other fields in the system with the hint (little question mark in circle) but they seem to be reference fields.
I have checked the configure dictionary of the field and there is no help text field available for the form layout. How do I do this?
Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2025 08:00 AM - edited 05-20-2025 08:01 AM
Check boxes do not have hints. You could use a client script with showFieldMessage to display some text under the checkbox variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2025 08:20 AM
Hi @HaniyaH
Unfortunately, This is not supported for checkbox.
For such requirements, try to write a onLoad scripts with show field message
g_form.showFieldMsg('field_name', 'This is a sample help text', 'info');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2025 08:00 AM - edited 05-20-2025 08:01 AM
Check boxes do not have hints. You could use a client script with showFieldMessage to display some text under the checkbox variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2025 02:36 AM
Hi @Brian Lancaster there is some customization in my instance and I was able to do that. I can’t recall what it was now but OOB this is not possible and I would have taken this approach. Thanks so much for your help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2025 08:20 AM
Hi @HaniyaH
Unfortunately, This is not supported for checkbox.
For such requirements, try to write a onLoad scripts with show field message
g_form.showFieldMsg('field_name', 'This is a sample help text', 'info');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2025 02:35 AM
Hi @Mouli3 there is some customization in my instance and I was able to do that. I can’t recall what it was now but OOB this is not possible and I would have taken this approach. Thanks so much for your help!