text String(default: "")

The text of the widget used when the autoBind is set to false.

Example - specify text of the widget

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
     autoBind: false,
     text: "Chai"
});
</script>
In this article