On Wed, 2007-10-10 at 14:51 +0200, Thomas Guettler wrote:
> Hi,
> 
> How can I get a TextareaWidget with form_for_model()?
> 
> I have a solution, but it is too much code. You need to create
> an own DB-Field.

Right there, as you realise, you're looking the right place. You're
trying to create a form, so should never have to look further than form
fields and widgets.

What you want to do here is, given the particular field of the model,
replace its default form field with you own version that uses the
Textarea widget. This means using the formfield_callback parameter to
form_for_model(). That is given each model field in turn and should
return a form field instance. You need to be able to handle *every*
field in your model, so start with something that operates like the
default (see newforms/models.py) and extend it.

Basically, the form field you want to return is probably something like

        forms.CharField(...., widget=Textarea(rows=4, cols=40))
        
Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to