prefixOptionsObject

The configuration for the prefix adornment of the component.

Example - specify prefix adornment template

<input id="autocomplete" />
<script>
  $("#autocomplete").kendoAutoComplete({
    dataSource: [
        { id: 1, name: "Apples" },
        { id: 2, name: "Oranges" }
      ],
    dataTextField: "name",
    prefixOptions: {
      template: () => `${kendo.ui.icon("search")}`
    }
  });
</script>
In this article
prefixOptionsRelated Properties
Not finding the help you need?
Contact Support