On Mon, Aug 31, 2009 at 12:13 AM, buttman<cp368...@ohio.edu> wrote:
>
> class MyForm(ModelForm):
>    field1 = CustomField(custom_option="sdsdsd")
>    field2 = CustomField(custom_option="sdsdsd")
>    field3 = CustomField(custom_option="sdsdsd")
>    # ....
>
>    class Meta:
>        model = MyModel
>        exclude = ('some_field')
>
> class AnotherForm(MyForm):
>    field1 = CustomFIeld(custom_option="different")
>
>    class Meta:
>        model = MyModel
>        exclude = ('some_field', 'field2')
>
> For some reason, I can't get field2 removed from the subclassed form.
> If I subclass AnotherForm from ModelForm, field2 will be removed, but
> then I lose all my customizations from MyForm...
> >
>

The answer is you don't.  You change the inheritance scheme.  A
fundamental idea of inheritance is that you do not remove
functionality in subclasses.

Alex

-- 
"I disapprove of what you say, but I will defend to the death your
right to say it." -- Voltaire
"The people's good is the highest law." -- Cicero
"Code can always be simpler than you think, but never as simple as you
want" -- Me

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to