“Disabled” option for choiceField - Django

前端 未结 7 1106
别跟我提以往
别跟我提以往 2020-12-24 14:02

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 ?

7条回答
  •  执笔经年
    2020-12-24 14:25

    Django's form widgets offer a way to pass a list of attributes that should be rendered on the 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)
    

提交回复
热议问题