highlightFirst Boolean (default: false)

If set to true the first suggestion will be automatically highlighted.

Example - set highlightFirst

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