Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#8346 closed (duplicate)

overriding widget in ModelChoiceField doesn't work as expected

Reported by: derelm Owned by: nobody
Component: Forms Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: UI/UX:

Description

Using below custom ModelChoiceField will not use RadioSelect widget as expected.

class MyModelChoiceField(forms.ModelChoiceField):
    widget = forms.RadioSelect

You can work around that issue by overriding init like so:

class MyModelChoiceField(forms.ModelChoiceField):
    def __init__(self, *args, **kwargs):
        return super(MyModelChoiceField, self).__init__(widget=forms.RadioSelect, *args, **kwargs)

I guess this is a bug either with ModelChoiceField or with the documentation.

Attachments (1)

simple_replacement_of_widgets.diff (1.7 KB ) - added by oyvind 16 years ago.
should fix this issue

Download all attachments as: .zip

Change History (4)

by oyvind, 16 years ago

should fix this issue

comment:1 by Alex Gaynor, 16 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Collin Grady, 16 years ago

Resolution: duplicate
Status: newclosed

comment:3 by Jacob, 13 years ago

milestone: 1.0

Milestone 1.0 deleted

Note: See TracTickets for help on using tickets.
Back to Top