footer String
The template which renders the footer of the calendar. If false, the footer will not be rendered.
Example - specify footer template as a function
<input id="datetimepicker" />
<script id="footer-template" type="text/x-kendo-template">
Today - #: kendo.toString(data, "d") #
</script>
<script>
$("#datetimepicker").kendoDateTimePicker({
footer: kendo.template($("#footer-template").html())
});
</script>
Example - specify footer template as a string
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
footer: "Today - #: kendo.toString(data, 'd') #"
});
</script>