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
<div id="container">
<input id="autocomplete" />
</div>
<script>
$("#autocomplete").kendoAutoComplete({
dataSource: [
{ id: 1, name: "Apples" },
{ id: 2, name: "Oranges" }
],
dataTextField: "name",
rounded: "large"
});
</script>