Insert django form into template dynamically using javascript??

Posted by qulzam on Stack Overflow See other posts from Stack Overflow or by qulzam
Published on 2010-03-26T10:41:51Z Indexed on 2010/03/26 10:43 UTC
Read the original article Hit count: 711

I want to add same django form instance on same template. i already add one before and other add dynamically using javascript.

for example 'form" is a django form: newcell.innerHTML = {{ form.firstname }}; The problem is that when i submit the form, in view the request object has only one value (that is not add using javascript). how can i get the values of other form elements values that is added dynamically runtime.

© Stack Overflow or respective owner

Related posts about django-forms

Related posts about django-templates