suggest Boolean (default: false)

If set to true the widget will automatically use the first suggestion as its value.

Example - enable automatic suggestion

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  suggest: true,
  dataSource: {
    data: ["One", "Two"]
  }
});
</script>
In this article