I need to be able to set a couple of fileds to disabled when a user isn't part of a specific security group.
I have this logic on the add and edit pages which works as needed but it isn't respected for the inline edit or add:
XVar groups = Security.getUserGroups();
if (!groups["test"]) {
// Hide the "Public" field if the user is not an admin
pageObject.setDisabled("Public");
}
Thanks in advance for any ideas.