Can't make one field editable in a read-only form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2023 07:46 AM - edited ‎01-30-2023 07:47 AM
I have a form that has various ACL's to make all the fields on the record either read-only or editable to users of certain groups depending on the State. However, I have one field that needs to be editable to all users at all times. I created a Write ACL for that one field, where I added a condition for all states. I also added a script
gs.getUser().isMemberOf(' ');
to test for write access to users of a specific group. This doesn't seem to be working, and the field is still read-only and following the rules of the other ACLs. What can I do to make sure it's editable at all times?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2023 09:48 AM
Hi @Farah5 ,
In the ACL which you've written you need to mention as
if(gs.getUser().isMemberOf('Group Name')){
answer = true;
}
Please mark correct if my response has solved your query.
Cheers,
Mohammed Basheer Ahmed.