Re: Dynamic forms data is not getting sent in the POST

2015-10-21 Thread sushovan majumdar
Thanks James. I changed the rendering to move the fieldset inside the form tag and it works. Thank you so much On Wednesday, 21 October 2015 10:58:31 UTC-4, sushovan majumdar wrote: > > Hi James. > I'm copying the rendered HTML from browser view source: > > > > > > > > > > > > Co

Re: Dynamic forms data is not getting sent in the POST

2015-10-20 Thread James Schneider
> rendering code in template: > > > {{ formset.management_form|crispy }} > > > {% for form in formset.forms %} > > {% crispy form formset.crispy_helper %} > > {% endfor %} >

Dynamic forms data is not getting sent in the POST

2015-10-20 Thread sushovan majumdar
I'm trying to add dynamic forms to my inline formset using the steps mentioned in the post: Add a dynamic form to a django formset using javascript in a right way I have inline f