Doc2Form is creating new nodes without a problem, but none of the values are saved. Could this be due to the change in Umbraco 6.0.0 that setting a property's value now requires an explicit Save()?
Probably due to a bug in the new API. According to Morten we now need to manually map the member property to DefaultData. Haven't figured out how to do that.
That worked, but only if "Publish submission" is checked. There are times when we don't want the submitted items to be published right away (before going through a review process). If that checkbox is not checked, the field values still don't get saved.
Doc2Form not saving data to node (Umbraco 6.0.0)
Doc2Form is creating new nodes without a problem, but none of the values are saved. Could this be due to the change in Umbraco 6.0.0 that setting a property's value now requires an explicit Save()?
PS: It worked fine in 4.11.1, but after I upgraded to 6.0.0 today values are no longer being saved.
I'm having the same problem ...
Maybe this package is no longer maintained ?
Probably due to a bug in the new API. According to Morten we now need to manually map the member property to DefaultData. Haven't figured out how to do that.
In the meantime you can vote for this issue: http://issues.umbraco.org/issue/U4-2921
Comment author was deleted
Yup must be the same bug , guess doc2form also handles updating properties in the same way
ok found the fix:
add this line to doc2form.ascx.cs line 801:
just below:
That worked, but only if "Publish submission" is checked. There are times when we don't want the submitted items to be published right away (before going through a review process). If that checkbox is not checked, the field values still don't get saved.
is working on a reply...