I want my Nintex form (new responsive designer) to be disabled / read-only, except for when user is a member of a specified SharePoint group, using function "isMemberOfGroup()". I put my allowed editors users into that SharePoint group. All other users who can access that form can view it but not edit it.
I found a method that works, but perhaps there is something better.
Here is what worked for me,
I added a dummy, read-only field to the form and created a rule to set it as Required when the user is not a member of a certain SharePoint group. This causes the user to be unable to save the form using the Submit button. I also placed a label explaining that the user should use the Close button to prevent changes to the form.
In this method, the read-only user can still hit the Submit button, but it will not do anything. It will point the user to the required field, but that field is disabled, so the user will have no other option but to select Cancel.
Is there any method that will set the entire form to "Disabled" and make the Submit button disabled? That would be even better, but I don't see how to do that. Until then, this is the method that works.