ARIATemplate String(default: "Current focused #=data.valueType# is #=data.text#")

Specifies a template used to populate value of the aria-label attribute of the currently focused cell of the calendar. The parameters available for the template are:

  • current - The current focused date.
  • valueType - The focused item value type - month, year and etc.
  • text - A text representing the focused value.

Example

<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
    ARIATemplate: "Date: #=kendo.toString(data.current, 'G')#"
});
</script>
In this article