sizeString(default: undefined)

Sets a value controlling size of the component. When undefined (the default), the theme controls the default size. Can also be set to the following string values:

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

The "none" value is deprecated. Use custom CSS instead.

Example - sets a size

<input id="combobox"/>
<script>
  $("#combobox").kendoComboBox({
    dataSource: [
      { id: 1, name: "Apples" },
      { id: 2, name: "Oranges" }
    ],
    dataTextField: "name",
    dataValueField: "id",
    size: "large"
  });
</script>
In this article
size
Not finding the help you need?
Contact Support