inputRoundedString(default: undefined)
Sets a value controlling the border radius of the checkbox inputs. When undefined (the default), the theme controls the rounding. Can also be set to the following string values:
- "small"
- "medium"
- "large"
- "full"
Example
<ul id="checkboxgroup"></ul>
<script>
$("#checkboxgroup").kendoCheckBoxGroup({
items: [ "one", "two", "three" ],
inputRounded: "full"
});
</script>