New to Kendo UI for jQueryStart a free 30-day trial

FooterTemplate

configuration

The template used to render the footer template. The footer template receives the widget itself as a part of the data argument. Use the widget fields directly in the template.

footerTemplate

String|Function
Parameters:instanceObject

The widget instance.

<input id="customers" style="width: 400px;">
<script>
    $("#customers").kendoDropDownTree({
        dataSource: [
            { id: 1, name: "Apples" },
            { id: 2, name: "Oranges" }
        ],
        dataTextField: "name",
        dataValueField: "id",
        footerTemplate: 'Total <strong>#: instance.dataSource.total() #</strong> items found'
    });
</script>
Not finding the help you need?
Contact Support