How to add help text under radio field choices?

omsa1
Kilo Guru

Hi , 

I want to add help text under the choice as in the example below,how to do it?

find_real_file.png

1 ACCEPTED SOLUTION

Omkar Mone
Mega Sage

Hi 

Check the below link -

https://hi.service-now.com/kb_view.do?sysparm_article=KB0712308

 

It is not available for Checkbox variable.

 

Hope this helps.

 

Regards,

Omkar Mone

View solution in original post

7 REPLIES 7

Ankur Bawiskar
Tera Patron
Tera Patron

Hi,

Is this a catalog item?

you cannot add below it; you can add help text directly to the variable as below

configure that variable; go to Annotation tab

 

Always expanded - true

Mark Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
Thanks
Ankur

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Hi Ankur,

Thanks for quick reply, yes adding text under field is possible, i want to add text under each options , is it possible with annotation or macro?

Harsh Vardhan
Giga Patron

you can not show msgs between those choice value. either you can choose "help tag" or write on load client script using showFieldMsg() . 

if you will use showFieldMsg() , it will appear something like this. 

 

find_real_file.png

 

 

function onLoad() {
//Type appropriate comment here, and begin script below
g_form.showFieldMsg('choice','Request Access to System','info');
}

Hi Harshvardan,

I tried with onload client script and UI policy, its is not working for me . 

g_form.showFieldMsg('access_request_user','Request Access to System','info');

access_request_user - this is the choice value. 

 

find_real_file.png