tony
tony

Reputation: 1536

Django multiple select with JS

Can anyone tell me, how(if it's possible) can I make select with JavaScript such as autogenerated select in admin panel (using which we select user permissions)?

Upvotes: 0

Views: 2410

Answers (1)

Dominique Guardiola
Dominique Guardiola

Reputation: 3431

It's possible, see another post about re-using the date widget but this will be too much trouble, you'd better try to use another widget which you will install, and so, know every dependencies and gotchas.

Here is another Multiselect for Django for example :
http://djangosnippets.org/snippets/2079/

...for this really cool jquery UI widget : http://www.quasipartikel.at/multiselect/

Upvotes: 1

Related Questions