createSearchChoice를 사용하여 Select2 (3.5) 요소에 새 값을 추가 할 수 있지만 목록에없는 경우 새 값을 표시하려면 어떻게해야합니까? Select2 목록에없는 값을 추가 할 수는 있지만 목록에없는 기본값은 어떻게 표시됩니까? 기본값이 발견되지 않는 경우 initSelection
동안목록에 Select2 값이 표시되지 않습니다.
$("#select").select2({
placeholder: "Who is the invoice from?",
minimumInputLength: 2,
quietMillis: 300,
allowClear : true,
ajax: {
url: "accountsDataStore.xsp",
dataType: 'json',
data: function (term, page) {
return {
q: term, // search term
page_limit: 10
};
},
results: function (data, page) { return data; }
},
// extra code to allow entering value not in list
id: function(object) { return object.text; },
//Allow manually entered text in drop down.
createSearchChoice:function(term, data) {
if ($(data).filter(function() {
return this.text.localeCompare(term)===0;
}).length===0) {
return {id:term, text:term};
}
},
initSelection: function(element, callback) {
//sets a default value (if a value was selected previously)
//get the existing value
var id = $(element).val();
//if a value was selected: perform an Ajax call to retrieve the text label
if (id !== "") {
$.ajax(
"accountsDataStore.xsp", {
data: { id: id },
dataType: "json"
}).done(function(data) {
// ** TODO if value not found, display current element value -- HOW?? **
callback(data); });
}
}
}).on('change', function (evt) {
// Do something after value changes
}
);
, 다음 에서는 현재 값을 표시하려면? 형태
<input type="hidden"
id="view:_id1:_id4:callback1:inputName"
name="view:_id1:_id4:callback1:inputName"
aria-required="true"
value="ACME Company"
tabindex="-1"
class="select2-offscreen">
, 값은 단지 선택된 값이 나타나는 <span>
에 표시하지 않는 경우, 설정된다. 어떻게 든 목록에 추가합니까?
감사합니다.