![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
django-multiselectfield
Advanced tools
.. image:: https://travis-ci.org/goinnn/django-multiselectfield.png?branch=master :target: https://travis-ci.org/goinnn/django-multiselectfield
.. image:: https://coveralls.io/repos/goinnn/django-multiselectfield/badge.png?branch=master :target: https://coveralls.io/r/goinnn/django-multiselectfield
.. image:: https://badge.fury.io/py/django-multiselectfield.png :target: https://badge.fury.io/py/django-multiselectfield
A new model field and form field. With this you can get a multiple select from a choices. Stores to the database as a CharField of comma-separated values.
This egg is inspired by this snippet <http://djangosnippets.org/snippets/1200/>
_.
Supported Python versions: 2.7, 3.4+
Supported Django versions: 1.4-2.0+
.. code-block:: bash
$ pip install django-multiselectfield
.. code-block:: python
from multiselectfield import MultiSelectField
# ...
MY_CHOICES = (('item_key1', 'Item title 1.1'),
('item_key2', 'Item title 1.2'),
('item_key3', 'Item title 1.3'),
('item_key4', 'Item title 1.4'),
('item_key5', 'Item title 1.5'))
MY_CHOICES2 = ((1, 'Item title 2.1'),
(2, 'Item title 2.2'),
(3, 'Item title 2.3'),
(4, 'Item title 2.4'),
(5, 'Item title 2.5'))
class MyModel(models.Model):
# .....
my_field = MultiSelectField(choices=MY_CHOICES)
my_field2 = MultiSelectField(choices=MY_CHOICES2,
max_choices=3,
max_length=3)
Only you need it, if you want the translation of django-multiselectfield
.. code-block:: python
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
#.....................#
'multiselectfield',
)
It is possible to customize the HTML of this widget in your form template. To do so, you will need to loop through form.{field}.field.choices
. Here is an example that displays the field label underneath/after the checkbox for a MultiSelectField
called providers
:
.. code-block:: HTML+Django
{% for value, text in form.providers.field.choices %}
<div class="ui slider checkbox">
<input id="id_providers_{{ forloop.counter0 }}" name="{{ form.providers.name }}" type="checkbox" value="{{ value }}"{% if value in checked_providers %} checked="checked"{% endif %}>
<label>{{ text }}</label>
</div>
{% endfor %}
Django REST Framework comes with a MultipleChoiceField
that works perfectly with this:
.. code-block:: python
from rest_framework import fields, serializers
from myapp.models import MY_CHOICES, MY_CHOICES2
class MyModelSerializer(serializers.HyperlinkedModelSerializer):
# ...
my_field = fields.MultipleChoiceField(choices=MY_CHOICES)
my_field2 = fields.MultipleChoiceField(choices=MY_CHOICES2)
# ...
All tests pass on Django 1.4, 1.5, and 1.8+, so if you can, use a modern version of Django. However, if you must use Django 1.6 or 1.7 there are two known issues you will need to be aware of:
Named groups <https://github.com/goinnn/django-multiselectfield/pull/30#issue-52149983>
_ do not render properly in Django 1.6. The workaround is to manually render the field in your form or use a custom widget. If your workaround is suitably generic, please submit a pull request with it.
Only in Django 1.6 and 1.7, due to Django bug #9619 <https://code.djangoproject.com/ticket/9619>
_, passing a MultiSelectField to values()
or values_list()
will return the database representation of the field (a string of comma-separated values). The workaround is to manually call .split(',')
on the result.
The Django bug was introduced in Django 1.6 and is fixed in Django 1.8 and onward, so values()
and values_list()
return a vanilla Python list of values for Django <= 1.5 and Django >= 1.8.
See issue #40 <https://github.com/goinnn/django-multiselectfield/issues/40>
_ for discussion about this bug.
You can get the last bleeding edge version of django-multiselectfield by doing a clone of its git repository:
.. code-block:: bash
git clone https://github.com/goinnn/django-multiselectfield
There is a fully configured example project in the example directory <https://github.com/goinnn/django-multiselectfield/tree/master/example/>
_. You can run it as usual:
.. code-block:: bash
python manage.py migrate # or python manage.py syncdb --noinput
python manage.py loaddata app_data
python manage.py runserver
#118 <https://github.com/goinnn/django-multiselectfield/pull/118>
, #135 <https://github.com/goinnn/django-multiselectfield/pull/135>
)#122 <https://github.com/goinnn/django-multiselectfield/pull/122>
, #147 <https://github.com/goinnn/django-multiselectfield/pull/147>
, #148 <https://github.com/goinnn/django-multiselectfield/pull/148>
, #151 <https://github.com/goinnn/django-multiselectfield/pull/151>
)min_choices
to defaults when converting to form field (#123 <https://github.com/goinnn/django-multiselectfield/pull/123>
_)#148 <https://github.com/goinnn/django-multiselectfield/pull/148>
_)Thanks to:
tomasgarzon <https://github.com/tomasgarzon>
_aleh-rymasheuski <https://github.com/aleh-rymasheuski>
_nametkin <https://github.com/nametkin>
_karolyi <https://github.com/karolyi>
_olivierdalang <https://github.com/olivierdalang>
_PetrDlouhy <https://github.com/PetrDlouhy>
_daimon99 <https://github.com/daimon99>
_thijsBoehme <https://github.com/thijsBoehme>
_hirokinko <https://github.com/hirokinko>
_atten <https://github.com/atten>
_ixc <https://github.comixc>
_LeilaniAnn <https://github.comLeilaniAnn>
_danilogbotelho <https://github.comdanilogbotelho>
_dmitry-krasilnikov <https://github.comdmitry-krasilnikov>
_Kamil Dębowski <https://github.comkdebowski>
_Hernil <https://github.com/hernil>
_Vasyl Stanislavchuk <https://github.com/vasyabigi>
_Litchfield <https://github.com/litchfield/>
_Chris-erickson <https://github.com/chris-erickson>
_StillNewb <https://github.com/StillNewb>
_Diego Yungh <https://github.com/DiegoYungh>
_Daniele Procida <https://github.com/evildmp>
_snippet <http://djangosnippets.org/snippets/1200/>
_FAQs
Django multiple select field
We found that django-multiselectfield demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.