Disabling filled in user fields on the form

Hi,

I am new to Plumsail Forms. We have developed Leave Request Workflow using Sharepoint Designer 2013 with multiple approvers.

However, the forms remain editable even to the applicant after some supervisors have approved the request.
Is there a way to disable editing (freeze) the fields filled in by the applicant using Plumsail Forms or Designer? Whats the best way to achieve this?

Hello @swm ,

Yes :slight_smile:

fd.field("{internalNamePersonOrGroupField}").ready().then((field) => {
field.disabled = true;
)

Give it a try.
Stepan

1 Like