messages.ariaEventLabel String
(default: "{0} on {1:D} at {2:t}")
Specifies the format string used to populate the aria-label attribute value of the selected event element.
The arguments which can be used in the format string are:
- {0} - represents the title of the selected event.
- {1} - represents the start date of the event.
- {2} - represents the start time of the event.
Example
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
selectable: true,
date: new Date("2013/6/6"),
messages: {
ariaEventLabel: "Selected event is {0}. It starts on {1:d} {2:t}"
},
dataSource: [
{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview"
}
]
});
</script>