2017-02-10 153 views
0

我使用select2] 1django-countries爲了給用戶下拉可能的國家。我現在想:(1)分裂下拉或(2)重新排列物品/國家的順序,即:Select2 + Django:設置首選列表項目

目前,我得到一個字母順序排列的列表:

- 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' 
    }); 
}); 

我用脆皮表格的形式呈現

回答

0

解決它,因爲Django的國家包括了此功能。

請參閱this

+0

嗨!您是否設法使用COUNTRIES_FIRST _BREAK使用此選擇並將'required'傳遞給select元素? –