views.moreEventsPopoverBoolean(default: false)
Controls how event overflow is opened in the Month view. When set to true, clicking the more-events link opens a popover for the date. When set to false, clicking the link uses the legacy behavior and navigates to the Day view.
The
moreEventsPopoveroption is supported only whenviews.typeis set to"month". The messages.moreEventsPopover messages are processed only when this option istrue.
Example - open Month view event overflow in a popover
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2026/8/3"),
views: [
{ type: "month", selected: true, eventsPerDay: 1, moreEventsPopover: true }
],
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>