Unplanned
Last Updated: 23 Jan 2018 07:46 by ADMIN
When the SelectedValue property of the RadDateTimePicker controls is bound to a TimeSpan (10:13) and such time does not exist in the drop down, the SelectedTime property is set to null.

As a workaround, you can subscribe to the DropDownOpened and SelectionChanged events. In the DropDownOpened event handler, you can get the current time using the SelectedTime property. Then in the SelectionChanged event handler, you can set the preserved value to the SelectedTime property of the RadDateTimePicker. 

public partial class MainPage : UserControl
{
	private bool IsLoadedFirstTime = true;
	private TimeSpan? SelectedTime;
	public MainPage()
	{
		InitializeComponent();
		this.DataContext = new MainViewModel();
	}

	private void StartDatePicker_SelectionChanged(object sender, Telerik.Windows.Controls.SelectionChangedEventArgs e)
	{
		var control = sender as RadDateTimePicker;
		if(IsLoadedFirstTime && control.IsDropDownOpen)
		{
			control.SelectedTime = SelectedTime;
			IsLoadedFirstTime = false;
		}          
	}

	private void StartDatePicker_DropDownOpened(object sender, System.Windows.RoutedEventArgs e)
	{
		var control = sender as RadDateTimePicker;
		if(IsLoadedFirstTime )
		{
			SelectedTime = control.SelectedTime as TimeSpan?;
		}
	}
}
Unplanned
Last Updated: 03 Jan 2017 21:07 by John
Won't Fix
Last Updated: 29 Sep 2016 12:17 by ADMIN
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
Focus is always the first date (top left corner) from the Calendar when DropDown is opened
Completed
Last Updated: 18 Jan 2016 15:29 by ADMIN
It happens when the control is focused and you press tab in order to focus next control.

Available in the 2014 Q1 Release.
Completed
Last Updated: 19 Oct 2015 13:56 by ADMIN
It happens with US culture.

Available in LIB version 2015.3.1019, it will be also available in the 2015 Q3 SP1.
Won't Fix
Last Updated: 13 Jul 2015 12:26 by ADMIN
The parser swap the date and month part so when you enter 11.3 it is parsed as 3.11.
Completed
Last Updated: 05 Feb 2014 10:05 by Ildar
Created by: Ildar
Comments: 2
Category: DateTimePicker
Type: Bug Report
0
when on Month view change year by prev/next button and select same month, year  is not saved
Completed
Last Updated: 12 Dec 2013 14:39 by ADMIN
ADMIN
Created by: Ventzi
Comments: 0
Category: DateTimePicker
Type: Bug Report
0
For reference Ticket ID: 766908.