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

Open

methods

Opens the popup.

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
  dataSource: [
    { id: 1, name: "Apples" },
    { id: 2, name: "Oranges" }
  ],
  dataTextField: "name",
  dataValueField: "id",
  index: 1
});

var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
dropdownlist.open();
</script>
Not finding the help you need?
Contact Support