On Thu, 2008-07-03 at 12:53 -0700, NewSpire wrote:
> I have a newform and I do most of the validation with the clean
> functions and that works great.  I need to generate a form error from
> inside the view that is displayed just like any other validation
> error.  For example, the form data is all valid, but the credit card
> processing fail.  How could I return an form error on the credit card
> number field from inside the view.

You do it the same way the forms code adds things to the errors (so have
a look at django.newforms.forms.BaseForm to see how the cleaning
happens). Basically, you poke at the _errors dictionary on the form
instance.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to