Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Need to add message below Catalog Variable

SNOW46
Tera Contributor

Hi All,

I want to display an message below the Variable in Catalog Item.

find_real_file.png

Can anyone let me know how to fix this?

 

Thanks

 

1 ACCEPTED SOLUTION

then you need to use Omkars solution

 

Write an onload client script

 g_form.showFieldMsg('field_name','Your Message','info',false);

 

The default for this is blue under the field

 

Regards

View solution in original post

8 REPLIES 8

then you need to use Omkars solution

 

Write an onload client script

 g_form.showFieldMsg('field_name','Your Message','info',false);

 

The default for this is blue under the field

 

Regards

Omkar Mone
Mega Sage

Hi 

Write this in onLoad client script :-

 g_form.showFieldMsg('your_variable_backend_name','Your Message','info',false);

 

Regards,

Omkar Mone.

www.dxsherpa.com

Hi 

I guess i have answered your question 🙂

Thanks.

KimM1
Giga Contributor

This helped me for my catalog item. Thank you very much.