Bug?
See attached gif video
Newst Xamarin, Newest Telerik
When the Calendar control is in Month view, I wish to switch to Day view when a date is selected.
The view changes, but the Day view doesn't scroll to the selected date.
If I am at January 10th (Month View), then go to March 30th (Day view), the Day view shows March, but shows the week containing the 10th , not the 30th
My RadCalendar is bound to a model.
<input:RadCalendar x:Name="calendar" SelectedDate="{Binding SelectedDate, Mode=TwoWay}"
In the code behind I do this.
private void Calendar_OnSelectionChanged(object sender, ValueChangedEventArgs<object> e){ if (calendar.ViewMode == CalendarViewMode.Month) { calendar.TrySetViewMode(CalendarViewMode.Day); Model.SelectedDate = (DateTime) e.NewValue; }}