- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2024 12:40 PM
We are having issues of people going into Change Tasks and making a task for Server Engineering and then directly assigning the task to someone in that group. That person may be busy or not even here. They want to lock it down that only someone in the Group can assign it to a person in that group. Any idea's on how I can achieve this? TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2024 12:46 PM - edited ‎02-28-2024 12:47 PM
Hi @Wendy Peterson ,
You can write client script on change task table and check for user's group membership, if user is part of that group then keep that field editable else set readOnly.
g_form.setReadOnly("assignment_group",true);
-Thanks,
AshishKM
Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2024 12:46 PM - edited ‎02-28-2024 12:47 PM
Hi @Wendy Peterson ,
You can write client script on change task table and check for user's group membership, if user is part of that group then keep that field editable else set readOnly.
g_form.setReadOnly("assignment_group",true);
-Thanks,
AshishKM
Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2024 02:35 PM
I would use an ACL for this because a UI Policies and Client scripts do not apply to the list.