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

this will show message on form ? what exactly you need ? you want as help text or form message ?

can you clear your requirement ? 

@Harshvardhan 

 

We want to have a message or a hint inside the MVRS beside "Add Row"  label

when you added the onload client script, did you set isolate script as false ?