inputRounded String
(default: 'medium')
Sets a value controlling the input elements border radius. Can also be set to the following string values:
- "small"
- "medium"
- "large"
- "full"
- null
Example
<ul id="checkboxgroup"></ul>
<script>
$("#checkboxgroup").kendoCheckBoxGroup({
items: [ "one", "two", "three" ],
inputRounded: "full"
});
</script>