How to hide New and Edit button based on roles. Urgent!!!!!
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2014 09:06 PM
Hi All,
I need to hide New and Edit button for problem creator role in the Problem Task related list in Problem form.
I tried all the possible ways but still not working.
PLease help me on this.
Thanks,
Madan
22 REPLIES 22
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2017 12:14 PM
//answer = !parent.active;
if (parent.state == '3' || parent.state == '-2') // Scheduled/Closed state.
{
answer = true;
}
else
{
answer = false;
}
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2021 12:26 PM

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2021 05:14 AM