- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 04:19 AM
How to hide "Options" on the catalog form when we select 2 fields with type "check boxes" with order one by one.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 04:40 AM
@pdisrilatha Try to put these checkboxes in different containers and the options text will not appear. If the checkboxes belong in the same container then render engine tries to group them together and adds a label to this group. Best way to avoid this is to put the checkboxes in separate containers, this way grouping won't take place and the text won't show.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 04:26 AM
Hi @pdisrilatha,
Refer the following KB article.
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0853625
Please mark my response as correct and helpful if it helped solved your question.
Thanks,
Rohit Suryawanshi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 04:37 AM
HI@ Rohit99,
here we are creating 2 fields with type checkbox then Onces we are checking on the form it is showing like above image.so we need to hide or delete "Options"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 04:49 AM
Hi @pdisrilatha,
Then you may add/create break variable and set its order between those 2 checkbox.
Thanks,
Rohit Suryawanshi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 04:29 AM
Hi @pdisrilatha
You can write an onLoad client script:
function onLoad() {
g_form.removeOption('field name', 'option'); //replace field name and option with your own
}
"If you found my answer helpful, please give it a like and mark it as the accepted solution. It helps others find the solution more easily and supports the community!"
Thanks & Regards,
Barath.P