- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2017 11:07 PM
Hi All,
We want add one Hint field in the change form. could some one help on this
Regards,
Roopa
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2017 03:31 AM
Hi
I have created a info icon beside the fields looks something like this
The following onload client script will do this
function onLoad() {
//Type appropriate comment here, and begin script below
g_form.addDecoration('field_name', 'icon-view', 'Your help text');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2017 11:26 PM
Hi you can use htm field for this.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2017 11:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2017 12:18 AM
Hi Roopa,
By using htyml field u can do it as below.
Or if you want to do somthing like u posted for that u have to write client script to keep populated as below:
onload client script:
function onLoad() {
//Type appropriate comment here, and begin script below
var helpTextMot = g_form.getControl('u_approval_motivation');
toggleHelp(helpTextMot.id);
var helpText = g_form.getControl('u_country_list');
toggleHelp(helpText.id);
}
Thanks
P Ranjan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2017 11:30 PM
Hi Roopa,
Use annotations. Visit this and you can achieve the same
Annotating Forms - ServiceNow Wiki
Mark my reply as Correct and also hit Like and Helpful if you find my response worthy.
Regards,
Sneha Binani