How to hide "Options" on the catalog form.

pdisrilatha
Tera Contributor

How to hide "Options" on the catalog form when we select 2 fields with type "check boxes" with order one by one.

pdisrilatha_0-1727781526570.png

 

1 ACCEPTED SOLUTION

Sandeep Rajput
Tera Patron
Tera Patron

@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.

View solution in original post

9 REPLIES 9

Rohit99
Mega Sage

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




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"

 

Hi @pdisrilatha,
Then you may add/create break variable and set its order between those 2 checkbox.

Rohit99_0-1727783367469.png


Thanks,
Rohit Suryawanshi




Barath P
Tera Guru

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