encoded Boolean (default: true)

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

Example

<input id="checkbox" />

<script>
    $("#checkbox").kendoCheckBox({
        label: "<strong>Label one</strong>",
        encoded: false
    });
</script>
In this article