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.
|
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.
| |||
|
feedback
|
|
You could validate the field with
If it's a ModelChoiceField, you can supply the
This will keep the form required, and if | ||||
|
feedback
|
|
in argument add null = True like this
http://docs.djangoproject.com/en/dev/ref/models/fields/ for your comment
| |||||
feedback
|