On 1/17/07, Bram - Smartelectronix <[EMAIL PROTECTED]> wrote:
I'm trying to do subclassing using newforms, but anything in the
subclass just doesn't get passed on to the superclass:

Correct. Fields defined as attributes on a subclass do not get added.
Use __init__() in the subclass to append to the self.fields
dictionary, as Jeff suggested.

Note that this behavior is up for discussion if many people find it
inconvenient. My initial thought is that it's a bit unbalanced to
allow for the definition of extra fields in a subclass but not
allowing the *removal* of fields in the same way. But you're not the
first person who's tried to do this, so there's something intuitive
about just subclassing a form and specifying some more fields as class
attributes...

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