On Tue, Feb 17, 2009 at 7:27 AM, <natx...@gmail.com> wrote:

>
> 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?
>
> >
>
Are you including the form's media when you render the form?

You can do this by putting {{ form.media }} somewhere in the HEAD of the
document.

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

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