Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8195535
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:10:17+00:00 2026-06-07T05:10:17+00:00

In Django 1.4 documentation , it says that clean_<fieldname> methods are run first, then

  • 0

In Django 1.4 documentation, it says that clean_<fieldname> methods are run first, then form clean method is executed.

I have the following code sample. The form is used with FormPreview. When pmid field is empty in the form, it should throw ValidationError exception, but it doesn’t happen.

class MyForm(forms.Form):
    pmid = forms.CharField()
    .. other fields ..

    def clean(self):
        cd = super(MyForm, self).clean()
        cd['pmid'] # returns KeyError and it's not in cd
        return cd

I don’t override any clean_<field> method.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T05:10:19+00:00Added an answer on June 7, 2026 at 5:10 am

    First, if all you want to do is ensure a field is not blank, then just add required=True to it. For example:

    class MyForm(forms.Form):
        pmid = forms.CharField(required=True)
        ...
    

    And you’re done.

    However, even if you couldn’t do it that way, you still wouldn’t validate it in clean, but in clean_<fieldname> as the docs describe.

    def clean_pmid(self):
        pmid = self.cleaned_data.get('pmid')
        if not pmid:
            raise forms.ValidationError('pmid cannot be blank')
        return pmid
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The Django documentation ( http://docs.djangoproject.com/en/1.3/topics/testing/#running-tests ) says that you can run individual test cases
In the Django documentation on Models , the first command that I am asked
I have read the Django documentation (For reference, https://docs.djangoproject.com/en/1.3/intro/tutorial01/ ), but I'm still having
The documentation says: http://docs.djangoproject.com/en/dev/ref/settings/#time-zone Note that this is the time zone to which Django
Anyone have a quick url dispatcher example? I've looked at the Django documentation but
The Django documentation on its CSRF protection states that: In addition, for HTTPS requests,
How to write joins in django,i have gone through below django documentation ,but joins
In the django documentation it says this: ... One excellent feature of Memcached is
I noticed in the django documentation that when DEBUG is False it will mail
I have scoured the Django documentation and SO questions. I am trying to serve

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.