Hello,

in the last time i use django to create a gui for the internet. and it
works fine.
I have a lot of m2m relations. and they really work great.
But there are one problem:

In a custom manipulator:

class AddRelationManipulator(forms.Manipulator):
    def __init__(self):
        self.fields = (
            forms.SelectMultipleField(field_name="r_client", size=10,
choices=[(cl.id, cl.__str__()) for cl in Clients.objects.all()]),

        )

I have a SelectMultipleField the show all clients from a model. If i
use this manipulator i should select a piece of fields. Normally, as
many fields should come back as i had selected. The problem is, that
only comes ONE field (client object) back by POST. 

thank,

Rafael


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

Reply via email to