On 3/16/07, Todd O'Bryan <[EMAIL PROTECTED]> wrote:
>
> On Fri, 2007-03-16 at 17:41 +0000, Rubic wrote:
> > Just use a ChoiceField with a radio or checkbox widget.
> >
> >   http://www.djangosnippets.org/snippets/26/
> >
> > --
> > Jeff Bauer
> > Rubicon, Inc.
>
> Sorry, wasn't clear. I know how to do it if the question has already
> been created. My problem is how to create the form to create the
> question in the first place, since each possible answer has to have its
> own textarea input widget.
>
> I guess what I want is some way to create a form with a variable number
> of fields rather than a fixed number.

You can assign to FormClass.base_fields after you've already defined
the class. I think this is probably what you're after.

    class MyForm(forms.Form):
        field1 = forms.CharField()

    MyForm.base_fields['another_field'] = forms.CharField()
    MyForm.base_fields['and_another_one'] = forms.CharField()

Depending on what your use case, you might want to subclass MyForm in
your view or whatever and then add fields to that subclass.

Joseph

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to