How to add HINT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2024 02:16 AM
We have requirement on change table .
We have add new field called ' Backout Options ' under Planning section .
The field should be display right after 'BackOut Plan '.
Field should be select Box .
Field Name :- Backout Options
Below are options to be displayed
Tested Backout - (This specific change has been implement in NonProd or Prod and backed out successfully )
Untested Backout - (Back Out procedure is documented and available but has not been tested)
No Back Out - (This change cannot be backed out.)
NOTE - Based on the options selected Which are brackets those texts are HINT .
I have created the new field
But how to add HINT text based on the options selected .
Please prvoide steps and screenshot for better understanding .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2024 02:20 AM
Hi @nameisnani
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2024 02:34 AM
Hi @nameisnani ,
FYI > You cannot set dynamic help text directly
Instead you can make use of the below onchange client scipt to show or hide field message. (based on your condition you can change the script below )
if(newValue == 'tested_backout' ) {
g_form.ShowFieldMessage('backout_option', 'your text', info);
} else if (newValue == 'untested_backout'){
g_form.ShowFieldMessage('backout_option', 'your text', info);
} else if (newValue == 'no back out'){
g_form.ShowFieldMessage('backout_option', 'your text', info);
}
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2024 03:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2024 03:32 AM
share the code you tried...
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....