Skip to main content

plugin for django-selectable (to use with select2 UI)

Project description

This project is a kind of a plugin for django-selectable.

It provides widgets for use with a great JS library called select2 rather than jQuery UI. It also provides it’s own Lookup classes for better (IMO) serialization results and limiting results (on server side).

For now there’s only a basic single-valued autocomplete widget for usage on ForeignKey (or simply ModelChoiceField) fields.

Installation and usage

  • install django-selectable (you can ommit the part regarding jquery-ui)

  • add selectable_select2 to INSTALLED_APPS. So it look like this:

    INSTALLED_APPS = (
        ...
        'selectable',
        'selectable_select2',
        ...
    )
  • define your lookup class

  • in your forms you can use selectable_select2.widgets.AutoCompleteSelect2Widget like so:

    from selectable_select2.widgets import AutoCompleteSelect2Widget
    from django import forms
    
    from myapp.models import MyModel  # example model with a ForeignKey called ``myfk``
    from myapp.lookups import MyModelLookup  # the lookup defined in previous step
    
    class MyModelForm(forms.ModelForm):
    
        class Meta:
            model = MyModel
            widgets = {
                'myfk' : AutoCompleteSelect2Widget(MyModelLookup, placeholder='select related item')
            }

Check the example project for more details.

TODO

check out TODO.rst

A note about my version of select2.js

In my version of select2.js I’ve added an option that allows to not escape the markup. Basically it adds one option to the defaults called ‘doEscapeMarkup’. Everything else should be working fine though. If you want to use this version do it like this:

<script src="{{ STATIC_URL }}selectable_select2/js/select2.min.js"></script>

See https://github.com/ivaynberg/select2/pull/355 for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-selectable-select2-0.1.4.tar.gz (21.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page