MultiValueField and MultiWidget

2009-11-04 Thread psvent
Hi! I am struggling to get MultiValueField and MultiWidget to work. I have a CharField and ChoiceField in the MultiValueField class, but I can't get the choices to show in the select tag. Am I doing something wrong? This is what I have so far: class AutocompleteWidget(forms.MultiWidget):

Re: MultiValueField and MultiWidget

2009-11-04 Thread psvent
OK, that was emberssing :). Thanks! On Nov 4, 1:43 pm, Maksymus007 wrote: > widgets = (forms.Select(), forms.TextInput()) > > you make empty widget, just specify available choices there > > On Wed, Nov 4, 2009 at 11:19 AM, psvent wrote: > > > Hi! > > > I am s