Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

Need help on MVRS

shaik_irfan
Tera Guru

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 ?

1 ACCEPTED SOLUTION

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");
    }
}

View solution in original post

17 REPLIES 17

Install Software

This what you want?:

Yeah, but i still dont see that. let me relogin once. Thank you

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 ? 

$scope can be accessible inside widget client controller