Hi,

I want to define a form with a multi-line textfield.

from django import forms

class TesteForm(forms.Form):
  field1 = forms.CharField(
            max_length=100,widget=forms.widgets.TextInput())
  ...
  field2 = forms.CharField(
            widget=forms.widgets.TextArea(attrs={'cols': 40,'rows': 5}))


But it gives the error 'module' object has no attribute 'TextArea'!!

If I do
  pydoc django.forms.widgets.TextArea
and it also says there is no such class TextArea...

what is happening here? I have django 1.2.3 and python 2.6...


Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to