messages.moreEventsPopoverObject
Configures the messages in the Month view overflow popover. These messages are processed only when the Month view has moreEventsPopover set to true.
Example - customize the Month view more-events popover messages
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2026/8/3"),
views: [{ type: "month", selected: true, eventsPerDay: 1, moreEventsPopover: true }],
messages: {
moreEventsPopover: {
eventsLabel: "Appointments",
noEvents: "No appointments for this date."
}
},
dataSource: [
{ id: 1, title: "Inspection", start: new Date("2026/8/3 09:00"), end: new Date("2026/8/3 10:00") },
{ id: 2, title: "Delivery", start: new Date("2026/8/3 11:00"), end: new Date("2026/8/3 12:00") }
]
});
</script>