ARIATemplate String
(default: "Current focused date is #=kendo.toString(data.current, 'D')#")
Specifies a template used to populate the value of the aria-label attribute of the currently focused cell of the calendar.
Example
<input id="datepicker" />
<script>
$("#datepicker").kendoDatePicker({
ARIATemplate: "Date: #=kendo.toString(data.current, 'G')#"
});
</script>