- 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:14 PM
this will show message on form ? what exactly you need ? you want as help text or form message ?
can you clear your requirement ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 01:34 PM
We want to have a message or a hint inside the MVRS beside "Add Row" label

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2020 01:40 PM
when you added the onload client script, did you set isolate script as false ?