- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2017 01:19 PM
We have created a Section on the Incident form called 'Record Owner Info'. This section contains six custom fields. Is there a way to restrict the visibility of this tab to just our Service Desk? We have 'read' ACLs to hide the six fields, but would like to go a step further and hide the whole tab if possible.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2017 01:23 PM
Hi Kevin,
The following should be helpful:
when select on checkbox related list button should hide
how to hide related list tab in incident form??
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2017 01:23 PM
Hi Kevin,
The following should be helpful:
when select on checkbox related list button should hide
how to hide related list tab in incident form??
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-02-2018 05:53 AM
Thanks Berny. I looked at this and the how to hide related list tab in incident form?? link guided me to getting this done.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2017 01:24 PM
This should work. You may have to add some extra code so it only hides if the user is not a member of Service Desk group.
Re: Hide Tab/Section in client script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2017 01:26 PM
Hello Kevin
This can be achieved using Onload client script. Try something like below
function onLoad(){
if(g_gorm.getValue('assignment_group')! = 'Service Desk'){
var sections = g_form.getSections();
sections(4).style.display = 'none';
}
}
Please mark my response as correct and helpful if it helped solved your question.
-Thanks