valueString(default: "")
The value of the widget.
Example - specify value of the widget
<input id="dropdownlist" /> <script> $("#dropdownlist").kendoDropDownList({ dataSource: ["Item1", "Item2"], value: "Item1" }); </script> In this article