Hey guys, im just having a strange issue with the resizing and dragging of appointments in the scheduler:
When I want to use the OnResizeStart und OnDragStart events like this the actions get aborted immideatly .
<ScheduleEvents TValue="AppointmentDataDto" OnActionBegin="OnActionBegin" OnCellClick="OnCellClick" OnEventClick="OnEventClick"
OnPopupOpen="OnPopupOpen" OnPopupClose="OnPopupClose" OnResizeStart="OnResizeStarted" OnDragStart="OnDragStarted">
ScheduleEvents>
Our OnResizeStarted method doesn't do anything atm, it's just an empty method. When I remove the 'OnResizeStart="OnResizeStarted" ' part then the resizing works again.
Sadly I was not able to create an example project for this case, but I recognized the possible issue in the SfSchedule.OnResizeStart method of your code, line 409:
AppointmentData eventData = this.EventProcessed.FirstOrDefault>((Func, bool>) (x => x.Guid.ToString().Equals(eventGuid, StringComparison.Ordinal)));
This line looks for an appointment with the given eventGuid, but no appointment has that guid. Any ideas how this can happen? What further informations do you need?
Best regards
Patrick