Opened 17 years ago

Closed 17 years ago

#5737 closed (invalid)

CheckboxSelectMultiple when you use choices, required=False is not respected

Reported by: David Reynolds Owned by: nobody
Component: Forms Version: dev
Severity: Keywords:
Cc: david@… Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

if for example you do:

TOWN_CHOICES = (
    ('Norwich', 'Norwich'),
    ('Dereham','Dereham'),
)

town = forms.MultipleChoiceField(required=False, choices=TOWN_CHOICES, widget=forms.CheckboxSelectMultiple)

You cannot submit your form without selecting one of the choices, the form throws the following error:

Select a valid choice. That choice is not one of the available choices.

Change History (4)

comment:1 by David Reynolds, 17 years ago

Cc: david@… added

comment:2 by Gary Wilson, 17 years ago

Triage Stage: UnreviewedAccepted

comment:3 by David Reynolds, 17 years ago

Can anyone else confirm this behaviour, as I now can't recreate it!

comment:4 by David Reynolds, 17 years ago

Resolution: invalid
Status: newclosed

I'm closing this because I believe I misreported it.

Sorry.

Note: See TracTickets for help on using tickets.
Back to Top