- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 04:25 AM
Hello Everyone,
How do I go about making the resolve UI Action buttons only visible to those who are in the assignment group member?
I am using this condition gs.getUser().isMemeberOf(current.assignment_group). can i need to check client check box.
Thanks,
Tejaswini Dhoran
Solved! Go to Solution.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 06:57 AM
Hi,
I see a typo mistake here:
gs.getUser().isMemeberOf(current.assignment_group)
it should be:
gs.getUser().isMemberOf(current.assignment_group)
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 06:56 AM
Don't know why it is not working my ui action.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 06:57 AM
Hi,
I see a typo mistake here:
gs.getUser().isMemeberOf(current.assignment_group)
it should be:
gs.getUser().isMemberOf(current.assignment_group)
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 07:04 AM
Thank you it work.