Im trying to get code to edit an existing record in a table working.
For some reason, form.is_valid is returning false (and I can't save it
because there's no cleaned data). Even reduced to this (below) where
I'm simply getting an existing "Post" object, creating a ModelForm,
and validating it, fails!

Any suggestions?


        post = Post.objects.get(id=postId)
        form = PostForm(instance=post)
        if form.is_valid(): # All validation rules pass
                        form.save()
        else:
               # at this point, non_field_errors and _get_errors
return null. _errors is defined as none(), yet form.is_valid
               # is returning false

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to