Completed
Last Updated: 05 May 2016 06:46 by ADMIN
Available with the 2016 R2 Release.
Completed
Last Updated: 17 Oct 2016 15:06 by ADMIN
Available in LIB version 2016.3.1017, it will be also available in the 2016 R3 SP1 release.
Completed
Last Updated: 06 Jul 2017 07:23 by ADMIN
When DateSelectionMode is Month, RadDateTimePicker has been opened and theme is changed, there is an InvalidOperationException.

Workaround:
1. Set the DateSelection mode to Day - <pickerInstance>.DateSelectionMode = DateSelectionMode.Day;
2. Clearthe merged dictionaries for the theme
3. Add the new dictionaries
4. Set the DateSelection mode to desired -  <pickerInstance>.DateSelectionMode = DateSelectionMode.Month;



Available in LIB version: 2017.2.710
Unplanned
Last Updated: 21 Sep 2018 08:46 by ADMIN
The current workaround is to make sure that both the day and month include leading zeros in the ShortDatePattern:

            this.DatePicker.Culture.DateTimeFormat.ShortDatePattern = "yyyy.MM.dd";
Completed
Last Updated: 07 Nov 2018 09:52 by ADMIN
Completed
Last Updated: 14 May 2024 15:37 by ADMIN
Release 2024.2.514 (2024 Q2)
The CLR property is named IsDropDownOpen, but the DependencyProperty has a type and it is named IsDownOpen. This works at runtime, but it brings an error at design-time.

The error says: "The property "IsDropDownOpen" is not a DependencyProperty. (some additional description here)"
Unplanned
Last Updated: 17 Feb 2025 10:10 by Martin Ivanov
If you set the TimeInterval of the RadDateTimePicker to a short interval, this will generate a lot of items in the clock area (the right section of the drop down, next to the calendar). If the items have not enough space to draw properly, they will start overlapping (thus clipping) one another. 
Add a way to enable a ScrollViewer for these situations.

Currently, this can be done by re-templating the RadClock control, as shown in the following KB article.
Unplanned
Last Updated: 20 Mar 2025 09:04 by Martin Ivanov
Add a property that formats the time items of the clock displayed in the DateTimePicker. Currently, the format is hard-coded to "t" which displays only the time part of the DateTime object. Adding this will allow to show also seconds and other parts of the date-time when it makes sense.
1 2 3