Select2 + Django:设置首选列表项
Select2 + Django: set preferred list items
我使用 select2]1 with django-countries 以便为用户提供可能国家/地区的下拉列表。我现在想 (1) 拆分下拉列表或 (2) 重新排列 items/countries 的顺序,即:
目前我得到一个按字母顺序排列的列表:
- select country
- Afghanistan
- Albania
- Algeria
...
- Kenya
...
- Zimbabwe
我想要的是:
(1)
- select country
- Germany
- Austria
- Switzerland
---------------------------
- Afghanistan
- Albania
- Algeria
...
- Kenya
...
- Zimbabwe
或 (2)
- select country
- Germany
- Austria
- Switzerland
- Afghanistan
- Albania
- Algeria
...
- Kenya
...
- Zimbabwe
这是我的js:
$(document).ready(function () {
$("#id_nationality").select2({
default: 'Germany',
placeholder: 'select country'
});
});
我使用 crispy-forms 进行表单渲染
解决了,因为django-countries有这个功能。
见this。
我使用 select2]1 with django-countries 以便为用户提供可能国家/地区的下拉列表。我现在想 (1) 拆分下拉列表或 (2) 重新排列 items/countries 的顺序,即:
目前我得到一个按字母顺序排列的列表:
- select country
- Afghanistan
- Albania
- Algeria
...
- Kenya
...
- Zimbabwe
我想要的是: (1)
- select country
- Germany
- Austria
- Switzerland
---------------------------
- Afghanistan
- Albania
- Algeria
...
- Kenya
...
- Zimbabwe
或 (2)
- select country
- Germany
- Austria
- Switzerland
- Afghanistan
- Albania
- Algeria
...
- Kenya
...
- Zimbabwe
这是我的js:
$(document).ready(function () {
$("#id_nationality").select2({
default: 'Germany',
placeholder: 'select country'
});
});
我使用 crispy-forms 进行表单渲染
解决了,因为django-countries有这个功能。
见this。