I have added (required=False) to field: > contactid = ModelChoiceField(queryset=Contact.objects.all(), > widget=HiddenInput()) >
so now I have: contactid = ModelChoiceField(queryset=Contact.objects.all(), widget=HiddenInput(), required=False) and it seems to be working. To me this looks as bug but maybe it is feature. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

