How to create a Radio Button on Incident Form

shaik_irfan
Tera Guru

Hi,

 

We have a requirement where i need to create a Radio button where user can select anyone from the following:

 

Does the solution involved in Personal

Yes    No       I don;t know

 

 

 

5 REPLIES 5

Harsh Vardhan
Giga Patron

Radio button is not available on form, it is available on catalog form, You can use "choice" field type to fulfill your requirement 

I see the there is a Type of Radio Button Choice in sys_glide_object but unable to make it Active

 

It is Read Only

exactly , it has set visible as false. 

I am not exactly sure the cons to make it has visible true.

 

you can play on your personal instance. 

Script: run this on your background script to make it visible true

 

var gr = new GlideRecord('sys_glide_object');
gr.get('0cc267c1bf3320001875647fcf0739f4');
gr.visible = true;
gr.update();

 

 

Note: I will still suggest you to create choice type field. because these changes might affect in upgrade. 

 

Kajal Goti
Mega Guru

Hello,

Refer below link,It will help you.

https://community.servicenow.com/community?id=community_question&sys_id=5c290be1db5cdbc01dcaf3231f96...

 

Please mark as correct and helpful,If you find any help