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
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:
forms.Select
, which is the default select rendererrender(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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With