2008/11/25 Jeff FW <[EMAIL PROTECTED]>:
>
> Alessandro,
>
> I'm not exactly sure what you're asking, but I think you want to know
> how to check multiple fields (possibly against each other) when
> submitting a form in the admin.  Let me know if I'm off-base here.
>
> Take a look at:
> http://docs.djangoproject.com/en/dev/ref/contrib/admin/#adding-custom-validation-to-the-admin
>
> You can do multi-field validation by adding a clean() method that will
> run after every clean_FIELDNAME() method, and can do any checking you
> need, and raise a ValidationError if it fails.

It's perfect.
I've used that and this:
http://www.pointy-stick.com/blog/2008/10/15/django-tip-poor-mans-model-validation/

to combine the model and form validation. So I can do all type of
multi field validations.

it should be simpler if someday will be added the possibility to
refers to fields directly (self.fieldname), instead of
self.cleaned_data.get(fieldname)
but it's near to perfection, so thanks!



-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~---------~--~----~------------~-------~--~----~
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