On 10/4/07, James Mulholland <[EMAIL PROTECTED]> wrote:
> The form is rendered OK, and any changes to the 'Address' record are
> saved. Changes to the 'Country' record aren't, however, and I wondered
> if there's a way to do this. Any help much appreciated :)

It's using the save() method from AddressForm, which only knows about
its own fields. Try adding this method to your FullForm class and see
if it helps. The rest of your code should be able to remain intact.

class FullForm(forms.Form, AddressForm, CountryForm):
    def save(self):
        AddressForm.save(self)
        CountryForm.save(self)

I make no guarantees, but it should get you on the right track.

-Gul

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