Re: newforms: MultipleChoiceField with CheckboxSelectMultiple

2006-12-12 Thread Adrian Holovaty
On 12/10/06, Ceph <[EMAIL PROTECTED]> wrote: > Ah. I was hoping wrongly that newforms would be able to handle getting > passed POST instead of having the parse the data manually into a dict. This has been fixed as of [4196], thanks to a patch from Honza. Adrian -- Adrian Holovaty holovaty.com

newforms: MultipleChoiceField with CheckboxSelectMultiple

2006-12-09 Thread Ceph
I'm toying around with converting my forms over to newforms and have come across a problem which may be just user error. I have a form: class AddForm(Form): flags = MultipleChoiceField(choices=[("A", "Aquatic"), ("C", "Canopy")]) I have a view, which for the moment, is just trying to redisp