> This works, but if I leave out the prefix in the last command then the same > ValidationError is raised.
You've almost worked it out yourself. This error usually occurs when the given prefix does not match with what django expected. When you don't provide any prefix argument on generating formset, django expects the default prefix. Try ImageFormset.get_default_prefix() to get that value and use it in your data dictionary Rajeesh. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

