Constantin Christmann schrieb:
> Hello,
>
> I am using ModelForm for auto-generation of my input forms. It saves me 
> much time to use this, but is there a way to apply additional attributes 
> to the generated form.
> I mean the kind of attributes I can define with
>
> attrs={'class':'special'}
>
> in the newforms library.
>
>
>   
You can give you class an __init__ method and do
customization after you called the  constructor of the base class:

{{{
class TestForm(forms.ModelForm):
    class Meta:
        model=Filter_Test

    def __init__(self, *args, **kwargs):
        super(TestForm, self).__init__(*args, **kwargs)
        self.fields['string'].widget.attrs['size']=64
}}}



-- 
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de


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