checkAllTemplate String|Function

The template used to render the checkAll label. By default, the widget displays only a span element with text "Check all".

<input id="dropdowntree" />

<script>
    $("#dropdowntree").kendoDropDownTree({
        dataSource: [{ text: "item1", value: 1 }, { text: "item2", value: 2 }],
        checkboxes: true,
        checkAllTemplate: "<h2>check all</h2>",
        checkAll: true
    });
</script>
In this article