hi, this is very strange issue.
I'm working with this version <PackageReference Include="Syncfusion.Blazor.Schedule" Version="19.4.0.48" />
and in my razor page I have
<ScheduleEvents TValue="PapiroSModel.Model.AppointmentData" OnDragStart="OnAppointmentDrag"></ScheduleEvents>
<ScheduleEvents TValue="PapiroSModel.Model.AppointmentData" Dragged="OnDragged"></ScheduleEvents>
<ScheduleEvents TValue="PapiroSModel.Model.AppointmentData" ActionCompleted="OnActionCompleted"></ScheduleEvents>
OnDragStart not works but if I have this:
<ScheduleEvents TValue="PapiroSModel.Model.AppointmentData" Dragged="OnDragged"></ScheduleEvents>
<ScheduleEvents TValue="PapiroSModel.Model.AppointmentData" ActionCompleted="OnActionCompleted"></ScheduleEvents>
<ScheduleEvents TValue="PapiroSModel.Model.AppointmentData" OnDragStart="OnAppointmentDrag"></ScheduleEvents>
OnDragStart works but the others not.
It happens also if
OnAppointmentDrag() is an empty function.