Hello SyncFusion team!
I'm using SyncFusion SfScheduler (version 28.2.7) and I'm listening to the Tapped event on the code-behind.
private void OnTapped(object? sender, SchedulerTappedEventArgs e)
{
var appointments = e.Appointments; //A list of Appointments
var dateSelected = e.Date;
var tappedElement = e.Element;
}
This will retrieve a list of objects when I click the SchedulerCell on the MonthView, but on the AgendaView, it will return null.
Is there any way I can have access to a day appointments on a given day?
I know I could take a look at the ItemSource, but that doesn't work for recurring events.
Thanks in advance!
Edit 1: This is the xaml import I'm using:
xmlns:scheduler="clr-namespace:Syncfusion.Maui.Scheduler;assembly=Syncfusion.Maui.Scheduler"