rounded String(default: "medium")

Sets a value controlling the border radius. Can also be set to the following string values:

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

Example - sets the rounded value

<select id="dropdown">
    <option>Item1</option>
    <option>Item2</option>
</select>
<script>
  $("#dropdown").kendoDropDownList({
    filter: "contains",
    rounded: "large"
  });
</script>
In this article