Declined
Last Updated: 21 Aug 2019 06:50 by ADMIN
Created by: Aleksandr
Comments: 1
Category: Date/Time Pickers
Type: Bug Report
0

dojo example

 

https://dojo.telerik.com/iyEXeDoH/7

 

we set same data for all 3 pickers, 1 & 3 open immediately as soon as we set the date & than clear them, 2 first clear than open, in the end all cleared but some still show any date but current

 

what we want:

if we set the date & than cleared DP, DP should show current date despite was it opened or not

Declined
Last Updated: 05 Feb 2021 13:24 by ADMIN
Created by: Ian
Comments: 3
Category: Date/Time Pickers
Type: Bug Report
0
Since you guys don't seem to have a dedicated place to report bugs in your software.....


Attempting to use the DateTimePicker without supplying something before the Hour in a 24 hour time picker option doesn't work. 


$('selector').kendoDateTimePicker({
    format: 'H:mm'
});


This fails completely, and instead renders it as if it were 12 hour based. However, putting a single space before this renders properly:

$('selector').kendoDateTimePicker({
    format: ' H:mm'
});

However, this also includes the space, which is undesirable.

This does not appear to occur when it is included with a date in any fashion. 
Declined
Last Updated: 04 Feb 2021 07:43 by ADMIN
Created by: Fred
Comments: 2
Category: Date/Time Pickers
Type: Bug Report
0
  1. Click the 'Calendar' icon button on the date field. The date picker should pop-out. 
  2. Now whilst the date picker if out change the iPad orientation to Landscape mode. 
  3. Check the date field again. Notice that the Calendar icon button has been duplicated.

Declined
Last Updated: 22 Feb 2021 16:37 by ADMIN
Created by: Denis
Comments: 1
Category: Date/Time Pickers
Type: Bug Report
0
TimePicker has incorrect popup position if set option:
popup: {
position: 'top right'
}
Declined
Last Updated: 29 Sep 2021 11:31 by ADMIN

This can be reproduced on your demo page. If you inspect the input element there, you'll see this:

I would expect this element to only have the role="datepicker" and not the role="combobox". This caused an issue for us, because we use this attribute to check some things in our javascript code.

Declined
Last Updated: 10 Jan 2023 10:50 by ADMIN
Created by: Michael D
Comments: 3
Category: Date/Time Pickers
Type: Bug Report
0

The TimePicker widget allows specifying a max date via its options. If none is specified, the widget uses a default max date (00:00 of the current day). However, since the selected value also use the current day for its date part, all selected values are bigger than the max value.

This means that when checking whether a selected value is smaller than the defined max value, the check will always fail, because e.g. 2022-12-22 12:00 is bigger than 2022-12-22 00:00. This DOJO demonstrates the behaviour (select a value and check the console output).

In my opinion, it would make more sense to set the default max date to either 23:59 or 00:00 of the following day.