- 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 04:31 AM
Hey,
You can use it in the condition field as below, and you don't need to click the client checkbox:
gs.getUser().isMemeberOf(current.assignment_group.name) && (current.getValue("assignment_group") != '') ;
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 04:48 AM
Hi ,
i used to above condition but resolve ui action not visible.
can i need to scripts.only need condition.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 04:40 AM
Hi Tejaswini,
To control the visibility of UI action, the condition of UI action needs to be updated with the mentioned code.
Client checkbox helps to do some client side changes based on clicking of UI action. It does not affect of the visibility of UI action.
Regards,
Deepankar Mathur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2022 04:48 AM
Hi
This method is absolutely works like a charm gs.getUser().isMemeberOf(current.assignment_group) - in your UI action condition.
If you want to use or make some changes in the client side then check the "client" else not required.
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep