I'm trying to reuse FilteredSelectMultiple from admin.widgets in my
forms (two select-widgets to choose from one to other like 'user
permisions' in admin interface), but didn't find how. The closest I've
done was with this code:

class PersonaForm(ModelForm):
    def __init__(self, *args, **kwargs):
        super(PersonaForm, self).__init__( *args, **kwargs)
        self.fields['fecha_actualizacion'].widget =
widgets.AdminDateWidget()
        self.fields['titulos'].widget = widgets.FilteredSelectMultiple
("titulos",False)
        self.fields['titulos'].queryset = Titulo.objects.all()
        ...

AdminDateWidget works well, but FilteredSelectMultiple only shows a
multiple select widget and the 'SelectFileter is not defined'
javascript error.

Any idea?

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