We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

How to hide the toggle icon on incident form

Rohit Reddy
Tera Contributor

I have a requirement to hide the toggle icon on incident form, please suggest

1 ACCEPTED SOLUTION

Mahesh Baraskar
Mega Guru

@Rohit Reddy   You can achieve by below steps:

 

Write on load client script on incident form and write below script in it.

 

var icon=document.getElementById("toggleMoreOptions");

icon.style.display='none';

 

Please mark as helpful if it solves your issue.

View solution in original post

1 REPLY 1

Mahesh Baraskar
Mega Guru

@Rohit Reddy   You can achieve by below steps:

 

Write on load client script on incident form and write below script in it.

 

var icon=document.getElementById("toggleMoreOptions");

icon.style.display='none';

 

Please mark as helpful if it solves your issue.