Completed
Last Updated: 13 Jan 2016 14:57 by ADMIN
Forbid typing a date earlier or later than a date if SelectableDateStart/SelectableDateEnd are set. Can be achieved by custom parsing.

Available in the 2016 Q1 Release: Implemented IsInputRestrictedToSelectableDates property in order to allow only selecting dates by input in the selectable range (when SelectableDateStart/SelectableDateEnd/BlackoutDates are used).
Completed
Last Updated: 23 Feb 2018 12:54 by Khaled
ADMIN
Created by: Telerik Admin
Comments: 5
Category: DateTimePicker
Type: Feature Request
14
Create property that allows to open the dropdown on focus or change the implementation of the control so this can be achieved by code.
Completed
Last Updated: 13 Jan 2016 14:55 by Scott
ADMIN
Created by: Telerik Admin
Comments: 1
Category: DateTimePicker
Type: Feature Request
14
Added TodayButtonVisibility and TodayButtonContent properties for showing/hiding a button that selects current date and time - available in the 2016 Q1 Release.
Unplanned
Last Updated: 03 Jan 2017 21:02 by Chris
ADMIN
Created by: Telerik Admin
Comments: 2
Category: DateTimePicker
Type: Feature Request
6
Implement two-digit year parsing referred as €œThe 2029 Rule€ in the control like the parsing in Excel.
Examples:
In Excel: typing 1/1/70 returns 1/1/1970
In RadDatePicker: typing 1/1/70 returns 1/1/2070
For more information use the description at this link
Unplanned
Last Updated: 08 Aug 2016 06:54 by ADMIN
ADMIN
Created by: Yana
Comments: 0
Category: DateTimePicker
Type: Feature Request
6
Used to clear the Input field and set the SelectedValue to null, include dependency properties like ClearButtonVisibility and ClearButtonContent.
Unplanned
Last Updated: 04 Jan 2017 07:34 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: DateTimePicker
Type: Feature Request
4

			
Unplanned
Last Updated: 16 Nov 2016 20:32 by Ivan
Created by: Lisitsa
Comments: 1
Category: DateTimePicker
Type: Feature Request
4
There should be a property like StringFormat, which can be set to something like "dd.MM". This is really common way across all wpf controls, and it's frustrating that currently it can be done only using code-behind. It's not MVVM friendly at all.
Unplanned
Last Updated: 13 Oct 2022 10:14 by ADMIN
Created by: Jeroen
Comments: 1
Category: DateTimePicker
Type: Feature Request
3

Change the time picker to a way that you can 'zoom' in on the time. In the same way as the decade>year>month zoom of the date part.

To be able to select times till minute or second precision

Unplanned
Last Updated: 03 Jan 2017 20:44 by ADMIN
Currenly if you update the Value it will update the text as well preventing further digits to be entered in a meaningful way.
Unplanned
Last Updated: 10 Jan 2019 11:46 by ADMIN
Created by: Stefan
Comments: 0
Category: DateTimePicker
Type: Feature Request
2

one of my users has requested the ability to have the daytime picker pop-up closed when you double-click on the time.  could this please be added into a future release. I have written some code to do it in the meantime in ClockItem.cs:


// Stefan: start
        protected override void OnMouseDoubleClick(MouseButtonEventArgs e)
        {
            base.OnMouseDoubleClick(e);
            var dateTimePicker = this.ParentOfType<RadDateTimePicker>();
            if (dateTimePicker != null && dateTimePicker.InputBox != null)
            {
                dateTimePicker.IsDropDownOpen = false; // close it.
            }
        }
        // Stefan: end

Unplanned
Last Updated: 03 Jan 2017 20:49 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: DateTimePicker
Type: Feature Request
2

			
Unplanned
Last Updated: 03 Jan 2017 20:38 by ADMIN
Research and implement if possible to choose seconds TimeInterval.
Unplanned
Last Updated: 03 Aug 2016 11:20 by ADMIN
ADMIN
Created by: Nasko
Comments: 0
Category: DateTimePicker
Type: Feature Request
1

			
Declined
Last Updated: 12 Feb 2016 14:36 by ADMIN
Can you please add a property CustomFormat to RadDateTimePicker?  Possibly we should have 3 options for DisplayMode: Short, Long and Custom.  If Custom is selected, user can specify format into CustomFormat field.  Ex. CustomFormat = "MMM dd, yyyy".  Also, make this field bindable, so that it can be specified from the ViewModel.
Unplanned
Last Updated: 03 Jan 2017 20:54 by ADMIN
ADMIN
Created by: Geri
Comments: 0
Category: DateTimePicker
Type: Feature Request
0

			
Unplanned
Last Updated: 03 Aug 2016 11:17 by ADMIN
ADMIN
Created by: George
Comments: 0
Category: DateTimePicker
Type: Feature Request
0
A client could change the TimeZoneInfo in the DateTimePicker control so it will shows the DateTime information different from the current machine.
Unplanned
Last Updated: 03 Aug 2016 11:17 by ADMIN