Hi, is it possible to submit data to back end similar to data-bound without using the couch input change to <cms:input>?
I am having extreme difficulty with custom forms that have radios, checkboxes and the likes. I love couch but really do not like how forms are handled and would rather Couch not handle them. But I would like to save data as if they were being handled by data-bound forms, create snippets for the admin for improved experience.
Or can I somehow tell couch using the: <cms:db_persist_form> to take each html input and then save it to the appropriate field? If that is possible, how can I do that with data I get after submission when I receive my response from Stripe?
edit: changed subject
I am having extreme difficulty with custom forms that have radios, checkboxes and the likes. I love couch but really do not like how forms are handled and would rather Couch not handle them. But I would like to save data as if they were being handled by data-bound forms, create snippets for the admin for improved experience.
- Code: Select all
<cms:form
masterpage='donation-results'
mode='create'
enctype='multipart/form-data'
method='post'
name='form'
id='donate_form'
action='stripe/charge.php'
>
Or can I somehow tell couch using the: <cms:db_persist_form> to take each html input and then save it to the appropriate field? If that is possible, how can I do that with data I get after submission when I receive my response from Stripe?
edit: changed subject