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

<input id="multicolumncombobox" />
<script>
  $("#multicolumncombobox").kendoMultiColumnComboBox({
    dataSource: [
      { Name: "Parent1", Id: 1 },
      { Name: "Parent2", Id: 2 }
    ],
    dataTextField: "Name",
    dataValueField: "Id",
    columns: [
      { field: "Name" },
      { field: "Id" }
    ],
    size: "large"
  });
</script>
In this article