The template which renders the footer. If false, the footer will not be rendered.

Example - specify footer template as a function

<div id="multiViewCalendar"></div>
<script id="footer-template" type="text/x-kendo-template">
    Today - #: kendo.toString(data, "d") #
</script>
<script>
    $("#multiViewCalendar").kendoMultiViewCalendar({
        footer: kendo.template($("#footer-template").html())
    });
</script>

Example - specify footer template as a string

<div id="multiViewCalendar"></div>
<script>
    $("#multiViewCalendar").kendomultiViewCalendar({
        footer: "Today - #: kendo.toString(data, 'd') #"
    });
</script>
In this article