vote up 0 vote down star

I am trying to use the dynamic django form script from http://www.djangosnippets.org/snippets/714/

The dynamic form is generated, but I am having hard time retrieving submitted fields through form.cleaned_data['myfield']

There are few comments on the snippet page, those didn't work either.

flag

50% accept rate

1 Answer

vote up 0 vote down check

Have you made sure that you have called is_valid() on the form first, and that the field is passing it's validation routines?

link|flag
thanks, it works with this at bottom if request.method == 'POST' and form.is_valid(): – bocca Oct 25 at 13:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.