0
我有一個從數據庫加載數據(具有記錄20,000 +)的下拉菜單。我按照http://www.codeproject.com/Articles/623566/Select2-The-Ultimate-jQuery-Autocomplete的要求加載數據。但它只允許單個選擇。所以我通過添加「multiple:true」來進行編輯,但是這會隱藏搜索框。jquery select2多選,顯示搜索和無限加載
$('#attendee').select2(
{
placeholder: 'Enter name',
//Does the user have to enter any data before sending the ajax request
minimumInputLength: 0,
allowClear: true,
multiple: true
}
那麼,有沒有一種方法,我可以做多重選擇,顯示搜索框,並有無限滾動(即上滾動按需加載數據)
感謝
對於select2插件,只有搜索功能與ajax加載,多選。位搜索框丟失,這是照顧與CSS的變化 – user166013