On 11/26/06, enigmadude <[EMAIL PROTECTED]> wrote:
> I find myself in situations like this with Django from time to time,
> usually more with forms than anything else. For example, if I use a
> form field {{ user.first_name }} in my template it does the usual form
> validation, etc. but then I find myself wondering, how do I set the CSS
> class attribute on this field if it is auto-generated into the
> template? Is there a filter for this? So I end up ditching the Django
> form field and just use <input /> because I can't find a way to easily
> add the class attribute.
>
> Does anyone know if situations like this are being considered for the
> new forms system in development?

Yes, the new forms system covers this. You're able to pass in
arbitrary HTML attributes for any form widget.

I'd encourage you to check it out by using the Django development
version (from our Subversion repository) and reading the unit
tests/documentation in tests/regressiontests/forms/tests.py.

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com

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