I am making a modelform that looks like the below. class ContactForm(forms.ModelForm): name = forms.CharField(widget=forms.TextInput(attrs= {'class':'required'})) phone = forms.CharField(widget=forms.TextInput(attrs= {'class':'required'})) comments = forms.CharField(widget=forms.Textarea(attrs={'rows':4})) class Meta: model = Leads exclude = ( 'mls_listing_id', 'friends_email')
Here is a snippet from a view. def contact(request): if request.method == 'POST': # If the form has been submitted... form = ContactForm(request.POST, instance=Leads()) # A form bound to the POST data if form.is_valid(): # All validation rules pass print form.cleaned_data['comments'] It always printe the comments data as the word undefined. This happens no matter if it is filled in or not. Any idea what is going on here? If I take the Textarea widget off it is fine. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---