select2 v4.0.0がAjaxアレイから読み込まれています。select2の値を設定すると、JavaScriptのデバッグで正しい項目(私の場合は#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>
私のjavascript:
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と呼ばれるオプションが必要でした。これにより、コンポーネントの初期選択を決定できました。これはv3.5で問題なく動作しました。
select
とajax
エラーが発生し、そのオプションは選択では許可されません...