Saving partial completed form but making it un-editable after submitting completed form

Hi,

I’m wanting to create a webpage (authenticated) that allows people to save it when partially completed however when they submit the completed form I don’t want them to be able to edit the form anymore. Is this possible?

Hi Alex,

A submit button by itself named “Save changes” would be enough to save the data they have currently input.

Some logic on a separate submit button “Complete form” that has an event that modifies some record data somewhere to set the form as complete would probably be what you are looking for to prevent editing of data after submission.

Then using a subset you can hide the form input fields and display a form submission template, eg. You have completed this form.

Dan