New to Kendo UI for jQueryStart a free 30-day trial

Index

configuration

The index of the initially selected item. The index is 0 based.

index

Number

Default: 0

<input id="dropdownlist" />
<script>
var items = [{ text: "Item 1", value: "1" }, { text: "Item 2", value: "2" }];
$("#dropdownlist").kendoDropDownList({
    dataTextField: "text",
    dataValueField: "value",
    dataSource: items,
    index: 1
});
</script>
Not finding the help you need?
Contact Support