This question is locked. New answers and comments are not allowed.
Since installing the Q3 trial, the code which I've been executing has stopped working once I've changed the selected date.
public MyCalendar(){ InitializeComponent(); radCalendar.SelectionChanged += RadCalendar_SelectionChanged;}
private void RadCalendar_SelectionChanged(object sender, ValueChangedEventArgs<object> e){ DateTimeSelected = radCalendar.SelectedDate; List<IAppointment> calendar = (List<IAppointment>)radCalendar.AppointmentsSource; var selectedAbsences = calendar.Where(a => DateTimeSelected.Value.Date >= a.StartDate.Date && DateTimeSelected.Value.Date <= a.EndDate.Date).Select(a => a);}Can anyone give any advice as to why this is not firing?