up vote 9 down vote favorite
8
share [g+] share [fb]

The Django admin site makes use of a really cool widget:

How can I make use of this widget in my own applications? I don't see anything like that listed here.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 9 down vote accepted

From the docs:

The Django Admin application defines a number of customized widgets for calendars, filtered selections, and so on. These widgets define media requirements, and the Django Admin uses the custom widgets in place of the Django defaults. The Admin templates will only include those media files that are required to render the widgets on any given page.

If you like the widgets that the Django Admin application uses, feel free to use them in your own application! They’re all stored in django.contrib.admin.widgets.

In this case, you want the FilteredSelectMultiple widget. To use it, apply the widget on a form field like so:

my_field = forms.ModelMultipleChoiceField(queryset=MyModel.objects.all(), widget=FilteredSelectMultiple("verbose name", is_stacked=False))

Make sure to include the forms media in the template as it needs to include a few JS files.

link|improve this answer
Hrm... doesn't want to work for some reason. All the JS is there, but it isn't converting the selectbox for some reason. 7src.com/~mnb2/a3/access – Mark Nov 9 '09 at 1:12
Can you paste some code to dpaste.com? – Bartek Nov 9 '09 at 1:15
Yes: dpaste.com/hold/118024 – Mark Nov 9 '09 at 1:24
This is a wild guess but try setting your second argument (for the is_stacked variable) to False. Looking at the code, it looks like that may affect the display of two boxes or not. Unfortunately I can't test it myself right now so I'm just looking through code hehe :) – Bartek Nov 9 '09 at 1:29
1  
Oh, I should also mention that you need to be logged in as a superuser just to access that file!! I recommend saving the file out and including that instead. – Mark Nov 11 '09 at 21:40
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.