#27370: Django's Select widget adds a required="required" attribute, even if
created with empty_label=True
-------------------------------------+-------------------------------------
     Reporter:  alexpirine           |                    Owner:  nobody
         Type:                       |                   Status:  new
  Cleanup/optimization               |
    Component:  Forms                |                  Version:  master
     Severity:  Normal               |               Resolution:
     Keywords:                       |             Triage Stage:  Accepted
  HTML,Select,wdiget,ModelChoiceField|
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------

Comment (by Andrew Nester):

 Agree with Claude Paroz - all we need to do is to set
 {{{use_required_attribute = False}}} in form where such field used.
 Something like this:

 {{{
 class TestForm(forms.Form):
     use_required_attribute = False

     some_field = forms.ModelChoiceField(queryset=SomeModel.objects.all(),
 empty_label=None)
 }}}

 I guess we don't need some additional changes for this, what do you think
 @alexpirine?

--
Ticket URL: <https://code.djangoproject.com/ticket/27370#comment:4>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/068.b984bc1b6fe6028fc93a62126051a91e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to