Please expose a moreEventsClick
(or similar) event in the Angular Scheduler MonthView, triggered when users click on the "more events" indicator (three dots) that appears when a day has more events than can be displayed inline.
This feature exists in the jQuery version of the Scheduler and is extremely useful for navigating users to a more detailed view (e.g., Day or Agenda view) when event overflow occurs.
Suggested API:
(kendoMoreEventsClick)="onMoreEventsClick($event)"
Where $event
includes:
{
date: Date;
events: SchedulerEvent[];
}
Use Case:
This allows developers to programmatically change the selectedViewIndex
and selectedDate
(e.g., show the Agenda or Day view for that specific date), providing a more intuitive user experience and consistent behavior across Kendo UI platforms.
Why it matters:
Users expect the "more events" indicator to be interactive
Enhances UX in event-heavy applications
Aligns Angular functionality with existing jQuery features
Currently the more button goes directly to the Day view, our users do not like the day view and would like to go to the Agenda view!