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

Text

methods

Gets or sets the text of the DropDownList.

Parameters:textString

The text to set.

Returns:String

The text of the DropDownList.

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

var dropdownlist = $("#dropdownlist").data("kendoDropDownList");

dropdownlist.text("Apples");
</script>
Not finding the help you need?
Contact Support