Get Started¶
Overview¶
This is an extension of Django-Select2, which is a Django integration of Select2.
The app includes Select2 driven Django Widgets and Form Fields.
Installation¶
Install
linked_select2
anddjango_select2
:... TODO: finish ... pip install django_select2
2. Add linked_select2
(and django_select2
if you’re going to use its
functionality too) to your INSTALLED_APPS
in your project settings.
linked_select2
should always be declared before django_select2
(in order to increase priority of .js files from this app).
3. Add linked_select2
to your urlconf
if you use any
ModelWidgets
:
url(r'^select2/', include('linked_select2.urls')),
External Dependencies¶
- jQuery version 2
This is not included in the package since it is expected that in most scenarios this would already be available.