<script>
$(function() {
var data = [
{ text: "12 Angry Men", value: "1" },
{ text: "Il buono, il brutto, il cattivo.", value: "2" },
{ text: "Inception", value: "3" },
{ text: "One Flew Over the Cuckoo's Nest", value: "4" },
{ text: "Pulp Fiction", value: "5" },
{ text: "Schindler's List", value: "6" },
{ text: "The Dark Knight", value: "7" },
{ text: "The Godfather", value: "8" },
{ text: "The Godfather: Part II", value: "9" },
{ text: "The Shawshank Redemption", value: "10" },
{ text: "The Shawshank Redemption 2", value: "11" }
];
$("#movies").kendoComboBox({
dataTextField: "text",
dataValueField: "value",
dataSource: data,
});
let combobox = $("#movies").data("kendoComboBox");//This "instantiates it"
combobox.value("The Godfather");
});
</script>
<input id="movies" />
結果:それは `$( "#のドロップダウンリスト")でなければなりませんので
データソースは、ゼロベースであるデータ( "kendoDropDownList")(0)を選択;'したい場合は「Thing1。 ' –
optionLabelが指定されている場合、nullエントリはゼロインデックスです。だから私の例では、select(1)は実際に正しいです。 optionLabelがなければ、あなたの提案通り(0)になります。 – NigelK
そこに 'optionLabel'がありませんでした。 –