Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add better validation support for nested fields #13

Open
gregmuellegger opened this issue Mar 4, 2016 · 0 comments
Open

Add better validation support for nested fields #13

gregmuellegger opened this issue Mar 4, 2016 · 0 comments

Comments

@gregmuellegger
Copy link
Collaborator

An example syntax:

class MyForm(SuperForm):
    addresses = FormSetForm(...)

    def clean_addresses(self):
        data = self.formsets['addresses'].cleaned_data
        raise ValidationError('...')  # will end up in self.errors['addresses']
        return data  # I would suggest ignoring the returned data as it's not clear were it should end up.

    def formsets_clean(self):
         ... # maybe another solution to clean multiple formsets at once together. The name cannot be clean_formsets as this might clash with a field called "formsets".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant