Hi Remco,
Thank you for reporting this behavior. A possible solution here will be to subscribe to the SelectedValueChanged event of the time zone dropdown list. In the event handler, we can get the newly selected value and apply it to the RadScheduler DefaultTimeZone property.
this.radSchedulerNavigator1.SchedulerNavigatorElement.TimeZonesDropDown.SelectedValueChanged += TimeZonesDropDown_SelectedValueChanged;
private void TimeZonesDropDown_SelectedValueChanged(object sender, Telerik.WinControls.UI.Data.ValueChangedEventArgs e)
{
var timeZonesDropDown = this.radSchedulerNavigator1.SchedulerNavigatorElement.TimeZonesDropDown;
if (this.radScheduler1 != null)
{
this.radScheduler1.ActiveView.DefaultTimeZone = timeZonesDropDown.SelectedValue as SchedulerTimeZone;
}
}
Regards,
Dinko | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.