How to create a Radio Button on Incident Form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2019 01:14 AM
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2019 01:19 AM
Radio button is not available on form, it is available on catalog form, You can use "choice" field type to fulfill your requirement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2019 02:23 AM
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2019 02:47 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2019 01:22 AM
Hello,
Refer below link,It will help you.
Please mark as correct and helpful,If you find any help