To simplyfy my question:

How would you set the initial value of a form.MultipleChoiceField
being populated by a dictionary?


 Django form doc says:

>>> class CommentForm(forms.Form):
      ...     name = forms.CharField(initial='class')
      ...     url = forms.URLField()
      ...     comment = forms.CharField()
>>> f = CommentForm(initial={'name': 'instance'}, auto_id=False)

But i don't see any information on how you would to this in my context
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to