vote up 2 vote down star

Here is the field declaration in a form:

max_number = forms.ChoiceField(widget = forms.Select(), 
                     choices = ([('1','1'), ('2','2'),('3','3'), ]), initial='3', required = True,)

I would like to set the initial value to be 3 and this doesn't seem to work. I have played about with the param, quotes/no quotes etc... but no change.

A few results I've found through Google suggest it is possible to set the initial value but I've never ever managed to get it to work! I am on django 1.0 by the way.

Could anyone give me a definitive answer if it is possible? And/or the necessary tweak in my code snippet?

Many thanks.

flag
I've been wondering the same thing. "initial" doesn't seam to work with choices in the latest trunk version as well. – Ty Mar 18 at 14:14

3 Answers

vote up 1 vote down

Try setting the initial value when you instantiate the form:

form = MyForm(initial={'max_number': '3'})
link|flag
vote up 0 vote down

Your code snippet is fine. As Andrew said, how are you rendering the form? And how is the form instance instantiated in your view before being passed to the template?

link|flag
vote up 0 vote down

To be sure I need to see how you're rendering the form. The initial value is only used in a unbound form, if it's bound and a value for that field is not included nothing will be selected.

link|flag

Your Answer

Get an OpenID
or

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