Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

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.