Declined
Last Updated: 06 Mar 2020 15:48 by ADMIN
Created by: Jan
Comments: 0
Category: Date/Time Pickers
Type: Feature Request
1
The editors do support inline footer's but you can't use an external footer template yet.

Example template:

<script type="text/template" id="datepicker-footer-template">

    "Today: #:kendo.toString(data, 'yyyy-MM-dd')#, Week: #:kendo.recurrence.weekInYear(data,kendo.culture().calendar.firstDay)#"

</script>

Suggestion to add a footer-template configuration option like this:

<input name="Date" data-role="datepicker" data-bind="value: Date" data-format="yyyy-MM-dd" data-week-number="true" data-footer-template="datepicker-footer-template"/>

Jan
Unplanned
Last Updated: 06 Mar 2020 15:45 by ADMIN
if we set min value  just for validation for new entry...then if user retrieve old record from database which document date is before  the minimum date it displays empty. so there should be read only dates available. thanks
Unplanned
Last Updated: 06 Mar 2020 15:43 by ADMIN
Parsing of the users Input (defined by ParseFormats) is stopping, as soon as min date is set. This happens if the date,evaluated by the parsing, is outside the min/max range. 

I would suggest, that parsing takes the min/max boundaries into account. 
Won't Fix
Last Updated: 06 Mar 2020 15:42 by ADMIN

Unable to edit date properly, when date is selected from the Kendo UI date picker.

Below are steps to reproduce

#1: Select date from the date picker

#2: Click on backspace in date field(place cursor end of Date 08/06/2018 place cursor next to 8) then Control is moved to another place, it supposed to be at 1

Provided below is the dojo for checking

http://dojo.telerik.com/ewANiMuM

Note:

Don't have issue in older versions in  Kendo UI 2017 R1 and lower versions,

found the issue from the version Kendo UI 2017 R2 and above

Won't Fix
Last Updated: 06 Mar 2020 15:41 by ADMIN
Created by: kudaravalli
Comments: 1
Category: Date/Time Pickers
Type: Bug Report
0

Hi Team,

 

Can you please help on below issue

 

By clicking on Backspace on the end of date value(09/08/2018), control is moved to another place(control is moved to first 0 instead of 1)

 

Issue with second Datepicker from the below sample

https://docs.telerik.com/kendo-ui/controls/editors/datepicker/how-to/date-masking-using-maskedtextbox

 

Thanks in advance


 

Completed
Last Updated: 06 Mar 2020 15:39 by ADMIN

Creating a timepicker with a min value on a DST start day (e.g. March 10, 2019), before the start time, causes the drop down to options to loop over pre-DST start times:
12:30 AM, 1:00 AM, 1:30 AM, 1:00 AM, 1:30 AM, 1:00 AM....

Expected: Time options should continue through the day:
12:30 AM, 1:00 AM, 1:30 AM, 2:00 AM, 2:30 AM, 3:00 AM....

I noticed the error originally in version "2018.3.1017", but it is still happening in "2019.1.220".

https://dojo.telerik.com/ayamEFuZ/4

If the dojo link doesn't work, here's a screenshot and code snippet.

<input id="timepicker" />
<script>
    $(document).ready(function () {
        // create TimePicker with broken drop down picker options
        $("#timepicker").kendoTimePicker({
            min: new Date(2019, 2, 10, 0, 30)
        });
    });
</script>
Unplanned
Last Updated: 05 Mar 2020 22:32 by ADMIN
Created by: Robert Madrian
Comments: 0
Category: Date/Time Pickers
Type: Feature Request
5

I'd like to request adding a clear button similar to the Kendo UI ComboBox for the Kendo UI Date/Time pickers.

Thank you!

Unplanned
Last Updated: 23 Jan 2020 16:52 by ADMIN
Scheduled for 2020.R1.SP.next
Created by: Srikanth
Comments: 8
Category: Date/Time Pickers
Type: Bug Report
2

Hi All,

 

Datepicker is closing after clicking month or year not waiting until selecting the date.

We are using IPAD IOS 13.2.2 version and loading the data in desktop website in IPAD. Dojo also not working properly in IPAD with desktop mode.

 

 

Thanks,

Srikanth.K

 

 

Completed
Last Updated: 22 Jan 2020 14:28 by ADMIN
Created by: Imported User
Comments: 1
Category: Date/Time Pickers
Type: Feature Request
1
It would be good if the datetimepicker would allow starting weeks from Monday. This is the standard in certain areas.
Unplanned
Last Updated: 02 Oct 2019 15:02 by ADMIN
Scheduled for 2019.R3.SP.next
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

Unplanned
Last Updated: 12 Jul 2019 06:38 by ADMIN

Hi
I've tried one of your Dojo to use a dateTimePicker and it's not working like it supposed to.

I haven't changed anything on the Dojo before trying it. This behavior as not cause us any problem so far, it was just to inform you.

I try to enter a time in a PM, but it puts it in AM

Completed
Last Updated: 13 May 2019 16:20 by ADMIN
Release 2019.R2

Actual behavior:

User uses down key or mouse scroll to change the time. A 00:00 hour is set instead of chosen hour on blur.

Expected behavior:

A value chosen by user remains selected. It's not changed by the timepicker.

Additional Context:

This problem occurs only when picker.enable(true) is called after component creation and user uses down arrow / mouse scroll to get to the the 'previous' day. When no .enable method is called everything works fine. Please see attached code snippets and gifs.

Dojo link: https://dojo.telerik.com/OZEDuFEg

Bug can be reproduced using the following code snippet:

 $(document).ready(function () {
    // create TimePicker from input HTML element
    var picker = $("#timepicker").kendoTimePicker({
            dateInput: true,
            format: 'HH:mm'
        }).data('kendoTimePicker');
    picker.enable(true)
});

Removing 

picker.enable(true)

fixes the issue

Completed
Last Updated: 22 Jan 2019 07:01 by Theme High
Created by: M
Comments: 4
Category: Date/Time Pickers
Type: Feature Request
10
Sometimes it's useful to limit users to only selecting a certain day of the week. This is possible with jQuery UI but not, AFAIK with Kendo.
Completed
Last Updated: 21 Jan 2019 02:32 by ADMIN
Created by: Misiu
Comments: 8
Category: Date/Time Pickers
Type: Feature Request
50
Please take a look at https://github.com/dangrossman/bootstrap-daterangepicker

It would be nice to have similar option in DatePicker - to choose range of days.
Completed
Last Updated: 21 Jan 2019 02:30 by ADMIN
Created by: Stéphane
Comments: 18
Category: Date/Time Pickers
Type: Feature Request
59
It would be great if we can have the option to have a multi-month view calendar.  Like the one in the asp.net ajax suite.
 
http://demos.telerik.com/aspnet-ajax/calendar/examples/functionality/multimonthview/defaultcs.aspx
Completed
Last Updated: 26 Jun 2018 11:16 by Telerik Admin
Created by: Le
Comments: 2
Category: Date/Time Pickers
Type: Feature Request
17
Provide properties to set min/max time of the DateTimePicker, e.g always shows from 8AM to 5PM of everyday.
Completed
Last Updated: 25 Sep 2017 21:30 by ADMIN
Created by: Patrick Rioux
Comments: 10
Category: Date/Time Pickers
Type: Feature Request
83
Add a multiple date selection to the Calendar. A multiple date selection calendar is very important for professional web applications in many situations. Also, there is a lack of events in the API.
It is always important to provide more events then less.

Here a few suggestions:
Property year;    /// Year displayed by control.
Property month; /// Month (1 to 12) displayed by control.
A method in the API to easily get the selected date(s).
A method in the API to easily set the selected date(s).
An option to indicate if we allow/disallow multi-selection.
A callback event (and passing the data as an argument) when a date is selected/unselected to allow/disallow the selection/deselection (by returning a true/false). This would allow to easy show a warning message when some dates are selected/unselected. We may currently do part of it in the change event but adding events onbefore/onafter selection would be nice.
Add the option to hide/show days from previous/next month.
Add the option to enabled/disable click from previous/next month.
The Year selection on the top should be a combo that allow keyboard input.
You may check the Yahoo Calendar event & properties. It will provide a good examples (http://developer.yahoo.com/yui/docs/YAHOO.widget.Calendar.html)
Completed
Last Updated: 08 Feb 2017 12:39 by Anis
Many calendars have the ability to show a column of ISO week numbers alongside the dates (either to the right or the left).  Although it's not a show stopper I have such a requirement in my current project.  While other controls offer this there are none I know of which permit custom calculation of the week number - another requirement for this project.
1 2 3 4 5