textString(default: "")
The text of the widget used when the autoBind is set to false.
Example - specify text of the widget
<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
     autoBind: false,
     text: "Chai"
});
</script>In this article