Completed
Last Updated: 19 Nov 2012 03:14 by Jesse Dyck
ADMIN
Ivan Todorov
Created on: 12 Nov 2012 07:40
Category: Scheduler/Reminder
Type: Bug Report
1
FIX. RadSchedulerNavigator changes the selected timezone when its binding context changes.
To reproduce the issue, add a RadDock with one tool window, add a RadSchedulerNavigator inside that window, run the project and unpin/pin the tool window. You will see that the selected timezone has changed.

To workaround the issue, remove the AssociatedScheduler of RadSchedulerNavigator at design time and then add this code in the form's constructor:
            this.radSchedulerNavigator1.BindingContext = new BindingContext();
            this.radSchedulerNavigator1.AssociatedScheduler = this.radScheduler1;
1 comment
Jesse Dyck
Posted on: 19 Nov 2012 03:14
Nice better resolution than having to resync via some event.

The previous patch as detailed on the forum, needed an event to fire

Me.radSchedulerNavigator1.SchedulerNavigatorElement.TimeZonesDropDown.SelectedValue = New SchedulerTimeZone(TimeZone.Current