- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2024 01:36 AM
I have a requirement to hide the toggle icon on incident form, please suggest
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2024 01:37 AM
@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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2024 01:37 AM
@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.