footerString|Function|Boolean
The template which renders the footer of the calendar. If false, the footer will not be rendered.
Example - specify footer template as a string literal
<input id="datepicker" /> <script> $("#datepicker").kendoDatePicker({ footer: (data) => `Today - ${kendo.htmlEncode(kendo.toString(data, 'd'))}` }); </script> In this article