> class FooForm(djangoforms.ModelForm):
> fooDesc = forms.CharField(max_length = 250)
> class Meta:
> model = Foo
Your choice of forms.CharField is probably unwise here. Try
forms.Field(widget=forms.Textarea)
Dave.
I just read the source code, under google_appengine/lib/django (look
for newforms). The Django website is probably a good place to start,
too.
Dave.