ฉันมี select2 v4.0.0 ที่ถูกเติมจากอาร์เรย์ Ajax ถ้าฉันตั้งค่า val ของ select2 ฉันสามารถเห็นผ่านการดีบักจาวาสคริปต์ว่าได้เลือกรายการที่ถูกต้อง (# 3 ในกรณีของฉัน) อย่างไรก็ตามสิ่งนี้ไม่แสดงในกล่องเลือก แต่ก็ยังคงแสดงตัวยึด
ในขณะที่ฉันควรจะเห็นสิ่งนี้:
ในช่องแบบฟอร์มของฉัน:
<input name="creditor_id" type="hidden" value="3">
<div class="form-group minimal form-gap-after">
<span class="col-xs-3 control-label minimal">
<label for="Creditor:">Creditor:</label>
</span>
<div class="col-xs-9">
<div class="input-group col-xs-8 pull-left select2-bootstrap-prepend">
<select class="creditor_select2 input-xlarge form-control minimal select2 col-xs-8">
<option></option>
</select>
</div>
</div>
</div>
จาวาสคริปต์ของฉัน:
var initial_creditor_id = "3";
$(".creditor_select2").select2({
ajax: {
url: "/admin/api/transactions/creditorlist",
dataType: 'json',
delay: 250,
data: function (params) {
return {
q: params.term,
c_id: initial_creditor_id,
page: params.page
};
},
processResults: function (data, page) {
return {
results: data
};
},
cache: true
},
placeholder: "Search for a Creditor",
width: "element",
theme: "bootstrap",
allowClear: true
}).on("select2:select", function (e) {
var selected = e.params.data;
if (typeof selected !== "undefined") {
$("[name='creditor_id']").val(selected.creditor_id);
$("#allocationsDiv").hide();
$("[name='amount_cash']").val("");
$("[name='amount_cheque']").val("");
$("[name='amount_direct']").val("");
$("[name='amount_creditcard']").val("");
}
}).on("select2:unselecting", function (e) {
$("form").each(function () {
this.reset()
});
("#allocationsDiv").hide();
$("[name='creditor_id']").val("");
}).val(initial_creditor_id);
ฉันจะทำให้กล่องเลือกแสดงรายการที่เลือกแทนที่จะเป็นตัวยึดได้อย่างไร ฉันควรส่งสิ่งนี้เป็นส่วนหนึ่งของการตอบกลับ AJAX JSON หรือไม่
ในอดีต Select2 ต้องการตัวเลือกที่เรียกว่า initSelection ซึ่งกำหนดไว้เมื่อใดก็ตามที่มีการใช้แหล่งข้อมูลที่กำหนดเองทำให้สามารถกำหนดการเลือกเริ่มต้นสำหรับองค์ประกอบได้ สิ่งนี้ใช้ได้ดีสำหรับฉันในเวอร์ชัน 3.5
select
กับajax
มันทำให้เกิดข้อผิดพลาดขึ้นตัวเลือกนั้นไม่ได้รับอนุญาตเมื่อเลือก ...