I have made a form, that with workflow creates a node in the Umbraco tree. Simple and easy :)
I was wondering if there is a way to use the same form to edit the content again. ( So thats the User / Member that created it, can update the date later if needed )
Did you want to update the data in the Content Tree, or the Data in the UmbracoForms Table?
Updating the Content Tree data is easy. Just create a normal MVC form, with a surface controller, and update the content via the API, maybe store the nodeID in a hidden field, or grab securely from the member session.
Updating the data in the Umbraco Forms is a little trickier, but you essnetially need to grab the recordID, and delete/re-create the record, which would invoke a botch-fix "update" vibe.
Edit Node created with Forms Module
I have made a form, that with workflow creates a node in the Umbraco tree. Simple and easy :)
I was wondering if there is a way to use the same form to edit the content again. ( So thats the User / Member that created it, can update the date later if needed )
Anybody made something like this ?
I use version 7.5.6 and Forms 4.4
Per J
Did you want to update the data in the Content Tree, or the Data in the UmbracoForms Table?
Updating the Content Tree data is easy. Just create a normal MVC form, with a surface controller, and update the content via the API, maybe store the nodeID in a hidden field, or grab securely from the member session.
Updating the data in the Umbraco Forms is a little trickier, but you essnetially need to grab the recordID, and delete/re-create the record, which would invoke a botch-fix "update" vibe.
did you find a way to do that using umbraco forms?
is working on a reply...