In Forms v 4.1 we would assign the RecordId - for example:
Model.RecordId = 2293;
And the Form would prepoluate based on the previous submission, however in the most recent version 4.3.3 RecordId requires a GUID, and assigning this from the "Unique id" of the submission - for example:
Model.RecordId = new Guid("7bdbd216-dffb-46ab-b138-9f7b4761d5ae");
does not appear to be working.
Can you please advise if there's something we are missing or is this functionality no longer possible?
Preloading Form Data
In Forms v 4.1 we would assign the RecordId - for example: Model.RecordId = 2293;
And the Form would prepoluate based on the previous submission, however in the most recent version 4.3.3 RecordId requires a GUID, and assigning this from the "Unique id" of the submission - for example: Model.RecordId = new Guid("7bdbd216-dffb-46ab-b138-9f7b4761d5ae");
does not appear to be working.
Can you please advise if there's something we are missing or is this functionality no longer possible?
Many thanks, Warren
For anyone else finding this, make sure you edit UmbracoForms.config and change AllowEditableFormSubmissions to true
is working on a reply...