- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 08:32 AM
Hi,
I have Multi row variable set created now my customer want to have a pop up as a hint or a description that displays just like how we set annotation hint for variables
is it possible ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 01:24 PM
Try this:
add a Catalog Client script (on the Catalog Item level) with the following:
function onLoad() {
//Type appropriate comment here, and begin script below
this.my_g_form = g_form;
}
And change your onLoad script to:
function onLoad() {
//Type appropriate comment here, and begin script below
if (parent.g_form) {
g_form.addInfoMessage("message");
}
else if (this.my_g_form) {
this.my_g_form.addInfoMessage("message");
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 01:37 PM
Install Software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 01:38 PM
This what you want?:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 01:40 PM
Yeah, but i still dont see that. let me relogin once. Thank you

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 02:03 PM
thinking, if i use onload client script on MRVS using one line of script,
g_form.addInfoMessage('Service-now');
that does the same thing. message appear on add Row page only.
are you getting message in different div with your solution ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 01:25 PM
$scope can be accessible inside widget client controller