Dynamic fields inside a form do not get posted
I was struggling today with posting the data from dynamically created form fields via Jquery to a Django view. After some hair pulling (and scratching!) the answer came from moving the form inside of the table to outside of the table. So this works just fine (pseudocode):<form><table></table></form>But this will not post the dynamic fields:
<table><form></form></table>Pretty weird, I am not sure why it happens but that is the way to solve it.