Re: MultipleChoiceField initial data

2009-01-13 Thread Malcolm Tredinnick
On Tue, 2009-01-13 at 02:12 -0800, Thierry wrote: > This doesn't seem to work: > auto_open_choices = forms.MultipleChoiceField(choices=( ('google', > 'Google'), ('msn', 'MSN'), ('yahoo', 'Yahoo')), required=False, > initial=['google']) > > From what i read in the discussions here it should... > W

MultipleChoiceField initial data

2009-01-13 Thread Thierry
This doesn't seem to work: auto_open_choices = forms.MultipleChoiceField(choices=( ('google', 'Google'), ('msn', 'MSN'), ('yahoo', 'Yahoo')), required=False, initial=['google']) >From what i read in the discussions here it should... What am i doing wrong? --~--~-~--~~~