On Mon, Apr 6, 2009 at 2:04 PM, grimmus <graham.col...@gmail.com> wrote:

>
> Hi,
>
> I am trying to create a text area for a form that is generated through
> ModelForm.
>
> The field i have is
>
> enquiry = models.CharField(widget=models.Textarea)
>
> but i get the error
>
> 'module' object has no attribute 'Textarea'
>
> I have tried a few variations but with no luck,
>
> Any ideas ?
>
> Thanks in advance
> >
>
Those are par tof the Django forms library, not the models library, so it
should look like:

from django import forms

forms.CharField(widget=forms.Textarea)

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

--~--~---------~--~----~------------~-------~--~----~
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