items.encoded Boolean (default: true)

Determines whether the checkbox label content should be rendered as an HTML string or it should be encoded.

Example

<ul id="checkboxgroup"></ul>

<script>
    $("#checkboxgroup").kendoCheckBoxGroup({
        items: [{
            value: "one",
            label: "<strong>Label one</strong>",
            encoded: false
        },{
            value: "two",
            label: "Label two"
        },{
            value: "three",
            label: "Label three"
        }],
    });
</script>
In this article