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 960937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T01:15:33+00:00 2026-05-16T01:15:33+00:00

I have a situation where a user can click a check box field, field_enable,

  • 0

I have a situation where a user can click a check box field, “field_enable”, on an html form and a nice jQuery operation will display another field, “fielda”, for the user to enter more data in. When “field_enable” is checked, I want to require the user to also fill out “fielda”. When “field_enable” is unchecked, the user should be allowed to submit the form without an error.

I want all of the errors to appear in the error list above the field rather than the form.errors list for the overall form (that’s why I’m not using the form’s clean() method). Therefore, I came up with this code below.

The enable/disable logic works great. When the “field_enable” is checked, the user must fill out “fielda” and when it is unchecked, the user passes along. However, when the box is checked, requiring the user to fill out more information, even if they fill in a value for “fielda” they sill get the validation error “Fielda is required”. This defies expectation.

Does anyone have any advice as to why “fielda” always fails validation whenever “field_enable” is checked

class MyForm(forms.ModelForm):

    def clean_fielda(self):
        cleaned_data = self.cleaned_data
        if cleaned_data.get("field_enable"):
            raise forms.ValidationError("Fielda is required")
        return cleaned_data['fielda']

An example of the model

class MyModel(models.Model):
    field_enable = models.BooleanField(default=False)
    fielda = models.CharField(max_length=128, blank=True, null=True)

Any help is much appreciated!

Joe

  • 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-05-16T01:15:34+00:00Added an answer on May 16, 2026 at 1:15 am

    You want to raise a validation error if “field_enable” was checked and that you don’t have a value for ‘field_a’. Like so (you’re missing the “field_a” exists check):

    class MyForm(forms.ModelForm):
    
        def clean_fielda(self):
            cleaned_data = self.cleaned_data
            if cleaned_data.get("field_enable") and not cleaned_data.get('field_a'):
                raise forms.ValidationError("Fielda is required")
            return cleaned_data['fielda']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have situation where a user can manipulate a large set of data (presented
I have a situation in which user can single tap a control, which show
I have situation like this: user submits form with action='/pay' in '/pay' I have
I have a situation where i have to take input(form) from user. After continue
I have a situation here: I have a user login form with a intermediate
I have some action with confirmation box (e.g: delete action), but when user click
I have a situation where user requests to do a long running process. I
I have a situation with my php code. In a previous page the user
My situation is that I have a video gallery where when a user clicks
I am facing a situation and need help. I have two tables: user: user_id

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.