Re: Formset clean() method is not called when invoking Formset is_valid()

2015-08-01 Thread Tim Graham
I couldn't reproduce a problem. In your template, be sure to include {{ formset.non_form_errors }} to see that error. For future reference, "Is this a bug?" questions should typically be directed to django-users, thanks! On Saturday, August 1, 2015 at 4:58:18 PM UTC-4, A D wrote: > > Hi, > >

Fwd: Formset clean() method is not called when invoking Formset is_valid()

2015-08-01 Thread A D
Hi, Reading on the documentation regarding formsets' validation: https://docs.djangoproject.com/en/1.8/topics/forms/formsets/#custom-formset-validation It seems that an overrided clean() method in a custom formset deriving from forms.BaseFormSet would be called when validating a formset (in par