- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2022 01:41 AM
I need a link to be displayed if a user select "No" from Yes/No field.
How do I achieve this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2022 01:45 AM
Hi,
g_form.showFieldMessage() -> doesn't support showing links
you can use info message to show the link
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
‎01-20-2022 01:45 AM
Hi,
g_form.showFieldMessage() -> doesn't support showing links
you can use info message to show the link
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
‎01-20-2022 01:47 AM
Hi
Is it not possible at all to show links below fields.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2022 01:47 AM
Hi,
As Ankur suggested, field message doesn't support hyperlinks, however, you can use a form info message if that works.
EG Below:
g_form.addInfoMessage("Please <a href = '/incident_list.do'>Click</a>");
-Anurag
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2022 01:48 AM
This method I know.
But is it possible to do it, may be by using "alert" or ....