inputName String
The name
attribute to be used for the checkbox inputs. If omitted, the id
of the wrapper element will be used.
Example
<ul id="checkboxgroup"></ul>
<script>
$("#checkboxgroup").kendoCheckBoxGroup({
items: [ "one", "two", "three" ],
inputName: "check-name"
});
</script>