I want my ChoiceField in ModelForm to have a blank option (------) but it's required.

I need to have blank option to prevent user from accidentally skipping the field thus select the wrong option.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You could validate the field with clean_FOO

CHOICES = (
    ('------------','-----------'), # first field is invalid.
    ('Foo', 'Foo')
)
class FooForm(forms.Form):
    foo = forms.ChoiceField(choices=CHOICES)

    def clean_foo(self):
        data = self.cleaned_data.get('foo')
        if data == self.fields['foo'].choices[0][0]:
            raise forms.ValidationError('This field is required')
        return data

If it's a ModelChoiceField, you can supply the empty_label argument.

foo = forms.ModelChoiceField(queryset=Foo.objects.all(), 
                    empty_label="-------------")

This will keep the form required, and if ----- is selected, will throw a validation error.

link|improve this answer
feedback

in argument add null = True

like this

gender = models.CharField(max_length=1, null = True)

http://docs.djangoproject.com/en/dev/ref/models/fields/


for your comment

THEME_CHOICES = (
    ('--', '-----'),
    ('DR', 'Domain_registery'),
)
    theme = models.CharField(max_length=2, choices=THEME_CHOICES)
link|improve this answer
Isn't that for optional field? I want it to be required but have no default value. – willwill Mar 13 '11 at 13:21
THEME_CHOICES = ( ('--', '-----), ('DR', 'Domain_registery'), ) theme = models.CharField(max_length=2, choices=THEME_CHOICES) – Efazati Mar 13 '11 at 13:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.