Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Disabled" option for choiceField - Django

Tags:

django

I having trouble with a simple question : How to have some "disabled" field in a dropdown menu generated via a modelForm and choiceFied in the django Framework ?

At the moment, I cannot figure out how to obtain such an output : -- Root 1 entry -- (disabled) -- Elt 1 -- (not disabled) -- Root 2 entry -- (disabled)

Do you have any advice ?

Pierre

like image 756
Pierre Avatar asked Mar 23 '09 12:03

Pierre


1 Answers

Django's form widgets offer a way to pass a list of attributes that should be rendered on the <option> tag:

my_choices = ( ('one', 'One'), ('two', 'Two')) class MyForm(forms.Form):     some_field = forms.ChoiceField(choices=my_choices,                                     widget=forms.Select(attrs={'disabled':'disabled'})) 

Unfortunately, this won't work for you because the attribute will be applied to EVERY option tag that is rendered. Django has no way to automatically know which should be enabled and which should be disabled.

In your case, I recommend writing a custom widget. It's pretty easy to do, and you don't have that much custom logic to apply. The docs on this are here. In short though:

  • subclass forms.Select, which is the default select renderer
  • in your subclass, implement the render(self, name, value, attrs) method. Use your custom logic to determine if the value qualifies as needing to be disabled. Have a look at the very short implementation of render in django/forms/widgets.py if you need inspriation.

Then, define your form field to use your custom widget:

class MyForm(forms.Form):     some_field = forms.ChoiceField(choices=my_choices,                                     widget=MyWidget) 
like image 147
Jarret Hardie Avatar answered Nov 13 '22 02:11

Jarret Hardie