Hello There,
I have a form with a bunch of common fields, and a first name and last name field, which will be different each time. On the NewView, I have a submit button with a bunch of rules on the button.
Currently, if they click submit, the data is submitted, the item is created in the list as expected, and instead of closing the form, the last rule on the button switches the view to a view named "SubmitAnother"
On that view, there are 2 buttons, "Close the Form" (Closes the form), and "Submit a Similar Item" (Switches the view back to the NewView, and sets a few fields back to blank (like first name and last name), and the previous data is still pre-populated in the common fields from the previous submit (because the form was never closed). In other words, i am trying to streamline data entry while trying to save the user a little time by not having to open a new blank form and re-typing the majority of the common fields again, and again when they have multiple similar entries to enter.
The idea seems easy enough, however, I am getting an error on the second submit.
Warning: The form cannot be submitted. Save Conflict. Your changes conflict with those made concurrently by another user. If you want your changes to be applied, click Back in you Web browser, refresh the page, and resubmit your changes.
My guess is that after the data was submitted the first time, the ID field was assigned a unique number, and the form is not understanding that i want to submit a fresh set of data to the list to create a new item.
Any suggestions?
Thanks,
Mike