Resolve button to be visible only Assignment group Member

Tejaswini Dhor1
Kilo Contributor

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

1 ACCEPTED SOLUTION

Anil Lande
Kilo Patron

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

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande

View solution in original post

7 REPLIES 7

Don't know why it is not working my ui action.

Anil Lande
Kilo Patron

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

Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande

Thank you it work.