vote up 0 vote down star

Example, for this form:

>>> class CommentForm(forms.Form):
...     name = forms.CharField(initial='class')
...     action = forms.ChoiceField(...)

Can I have the choices in the action field be different depending on what is in the name field?

flag

74% accept rate
Do you mean when creating the form or dynamically when the user types something into the name field? – lemonad Oct 28 at 22:03
lemonad, this would be at form creation time, depending what I'm feeding the form for initial. – Greg Oct 29 at 12:44

1 Answer

vote up 3 vote down

How about wrapping initial in a function or a lambda, so that the value of initial is deferred until form creation. Something like:

class CommentForm(forms.Form):
    name = forms.CharField(initial=lambda : self.action) # or more complex logic
    action = forms.ChoiceField(...)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.