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 the following situation: A user will define a certain filter on a
I have following situation: I have loged user, standard authentication with DB table $authAdapter
I have a situation where in a web application a user may need a
I have a situation where I have to take input from the user using
When creating scrollable user controls with .NET and WinForms I have repeatedly encountered situations
We have a situation where users are allowed to upload content, and then separately
We have a situation in our product where for a long time some data
I have a situation where I might have multiple instances of a program running
I have the situation where i use GIS software which stores the information about
I have a situation where I want to create a signature of a data

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.