size String(default: "medium")

Sets a value controlling size of the component. Can also be set to the following string values:

  • "small"
  • "medium"
  • "large"
  • "none"

Example - sets a size

<div id="container">
    <input id="autocomplete" />
</div>
<script>
  $("#autocomplete").kendoAutoComplete({
    dataSource: [
      { id: 1, name: "Apples" },
      { id: 2, name: "Oranges" }
    ],
    dataTextField: "name",
    size: "large"
  });
</script>
In this article