Re: newform-admin: custom validation (multiple fields)

2008-11-24 Thread Alessandro Ronchi
2008/5/1 [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > Thanks Felix. I did use the Form.clean() for my validation accross > multiple fields. There is an open ticket for the non_field_errors() > not being called withing the change_form.html template. > http://code.djangoproject.com/ticket/6809 I need

Re: newform-admin: custom validation (multiple fields)

2008-05-01 Thread [EMAIL PROTECTED]
Thanks Felix. I did use the Form.clean() for my validation accross multiple fields. There is an open ticket for the non_field_errors() not being called withing the change_form.html template. http://code.djangoproject.com/ticket/6809 -Alen On May 1, 4:14 pm, "[EMAIL PROTECTED]" <[EMAIL

Re: newform-admin: custom validation (multiple fields)

2008-05-01 Thread [EMAIL PROTECTED]
On Apr 30, 6:04 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > After reading over the newforms documentation, I came across the > Form.clean() method that suites my case nicely regarding my newforms- > admin form: > > """ > The Form subclass’s clean() method. This method can perform any >

Re: newform-admin: custom validation (multiple fields)

2008-04-30 Thread [EMAIL PROTECTED]
After reading over the newforms documentation, I came across the Form.clean() method that suites my case nicely regarding my newforms- admin form: """ The Form subclass’s clean() method. This method can perform any validation that requires access to multiple fields from the form at once. This is

Re: newform-admin: custom validation (multiple fields)

2008-04-30 Thread [EMAIL PROTECTED]
Hi Al, On Apr 30, 2:18 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I would like to add some custom validation to the newform-admin form. > I have look at the > -http://code.djangoproject.com/wiki/NewformsHOWTO#Q:HowdoIaddcustomval... > - and am still not finding a solution. > > Here is