Ah I found something ...

In my forms.MultiWidget subclass, "decompress" method was returning
None and not a couple of values !
I just done that :

    def decompress(self, value):
        if value is None:
            return (None, None)
        return value

I don't know if it's the best way, but it's working !!
Thank you Karen for your support !!
I can now go to sleep
--~--~---------~--~----~------------~-------~--~----~
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