summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorheathervm <heathervmurray@gmail.com>2017-03-31 07:10:08 -0700
committerTim Graham <timograham@gmail.com>2017-03-31 10:10:08 -0400
commit7d1e23775344cc3dead03bd4af45f4fdf134b819 (patch)
tree0b1b7aa765e7d21bf9d90f34be87563e32266f60 /docs/ref
parenta0d29a9abe93cbe87cf818c3b538506e49739b6c (diff)
Fixed #27993 -- Fixed model form default fallback for SelectMultiple.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/forms/widgets.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 9cc474aae6..828033352a 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -297,11 +297,12 @@ foundation for custom widgets.
The method's result affects whether or not a field in a model form
:ref:`falls back to its default <topics-modelform-save>`.
- Special cases are :class:`~django.forms.CheckboxInput` and
- :class:`~django.forms.CheckboxSelectMultiple`, which always return
- ``False`` because an unchecked checkbox doesn't appear in the data of
- an HTML form submission, so it's unknown whether or not the user
- actually submitted a value.
+ Special cases are :class:`~django.forms.CheckboxInput`,
+ :class:`~django.forms.CheckboxSelectMultiple`, and
+ :class:`~django.forms.SelectMultiple`, which always return
+ ``False`` because an unchecked checkbox and unselected
+ ``<select multiple>`` don't appear in the data of an HTML form
+ submission, so it's unknown whether or not the user submitted a value.
.. method:: use_required_attribute(initial)