Completed
Last Updated: 12 May 2023 14:23 by ADMIN
Release R2.2023-Increment.3(7.June.2023)
We are looking for a configuration in DateTimePicker to set a time range (e.g. 8AM till 10PM) which gets applied to every date.
In ASP.NET AJAXs RadDateTimePicker it was possible by setting StartTime and EndTime in TimeView.
Unplanned
Last Updated: 09 Mar 2023 19:14 by Jyotika

Bug report

The DateTimePicker's popup calendar view is cut in the Default, Classic, and Fluent themes.

Reproduction of the problem

  1. Run the following dojo
  2. Set the sizing option of the widget to large.
  3. Open to DatePicker popup.

Current behavior

The Date and Time views in the DateTimePicker popup are trimmed.

Expected/desired behavior

The Date and Time views in the DateTimePicker popup should not be trimmed.

Environment

  • Kendo UI version: 2023.1.117
  • Browser: [all]
Completed
Last Updated: 08 Nov 2022 21:16 by ADMIN
Release R1.2023-Increment.1(09.Nov.2022)

Bug report

The DatePicker TagHelper does not expose the disableDates configuration option.

Reproduction of the problem

When using the DatePicker TagHelper it is not possible to set the disableDates configuration.

Expected/desired behavior

The disableDates configuration should be configurable similar to the HTML Helpers.

Environment

  • Kendo UI version: 2022.2.802
  • Browser: [all]
Unplanned
Last Updated: 23 Sep 2022 17:05 by AscanioTziazas
Created by: AscanioTziazas
Comments: 0
Category: DateTimePickers
Type: Feature Request
1
Expose a "week" navigation depth option for selecting days of the week.
Unplanned
Last Updated: 07 Jul 2022 16:22 by Bruno

Bug report

The translations of the Time- and DateTimePickers are missing from the kendo.messages.en-US.js file although the Creating New Localization Files sections of the docs states that it has all messages and should serve as template for contributors.

Reproduction of the problem

  1. Open the kendo.messages.en-US.js file in the Kendo UI Core repo
  2. Search for TimePicker or DateTimePicker
Declined
Last Updated: 01 Jul 2022 14:04 by ADMIN

Bug report

On mobile device's the TimePicker and DateTimePicker's popup doesn't get scrolled as expected. Instead the entire page is scrolled.

Reproduction of the problem

  1. Run the DateTimePicker or TimePicker Demo on a mobile device (test on Safari/Chrome)
  2. Open the popup and try to scroll

Current behavior

The page gets scrolled.

Expected/desired behavior

The popup should be scrollable.

TicketID:

1570836

Environment

  • Kendo UI version: 2022.6.621
  • Browser: [ Mobile Chrome | iOS XX Safari ]
Unplanned
Last Updated: 08 Feb 2021 18:49 by ADMIN

Currently, the new feature .ComponentType('modern') does NOT respect the .Interval(n) setting for the control.

Demo of ComponentType setting on DateTimePicker control

 

According to the API Reference the Interval setting, Interval

"Specifies the interval, between values in the popup list, in minutes." 

 

The ComponentType('classic') does respect the Interval setting.  Thus, the ComponentType feature should be updated to respect the Interval setting when the "modern" ComponentType is selected.  The time interval under modern is always 1 minute (see screenshot).

                    @(Html.Kendo().DateTimePicker()
                            .Name("SessionEndDateTime")
                            .Interval(15)
                            .ComponentType("modern")
                            .Events(e => { e.Change("onSessionEndChange"); })
                            .HtmlAttributes(new { style = "width: 100%", title = "Session End Date/Time", @class = "form-control" })
                            .DateInput()
                            )

 

Modern should respect the Interval setting for the control.

Unplanned
Last Updated: 08 Feb 2021 15:30 by ADMIN
Created by: Karim
Comments: 5
Category: DateTimePickers
Type: Feature Request
8

Hey,

It would be very useful if the TimePicker component would have a feature called something like "AutoFocusTime()". By default, when there is no value inside the TimePicker, the default focused time is "12:00 am", therefore the user has to scroll up all the way to the required time. With the feature above, it would be possible to enter a time which should be focused by default. For example "8:00 am" which is when most businesses start operating.

Now the question is, why not just putting in a default value. Well, in a form with lots of inputs, the user may not know anymore which values he entered and which inputs have a default value set and therefore submitting wrong data. If a input doesn't have a default value this mistake can be caught by setting a [Required] attribute. Threfore, the user has to enter a value and it will be guaranteed that all values where entered by him and it wasn't a default value which has been set.

See ticket id 1412837.

Completed
Last Updated: 07 Oct 2020 12:45 by ADMIN
Release 2020.R3.SP.next
Created by: Raff
Comments: 7
Category: DateTimePickers
Type: Bug Report
0

Hi,

 

I'm having an issue with the TimePickerFor control, it doesn't show the time, only a strange format.

 

When I declare the control:

            @(Html.Kendo().TimePickerFor(m => m.ShiftStartDt)
                .Deferred()
            )

 

it only shows a forma of "h:mm tt" instead of the time from the model

 

When I change the control to a datetime picker, it works fine but I don't want to see the date, only the time.

This works:

            @(Html.Kendo().DateTimePickerFor(m => m.ShiftStartDt)
                .Deferred()
            )

 

I have debugged the model and the data is correct,

        [Display(Name = "Start Time")]
        public DateTime ShiftStartDt { get; set; }

 

I have even tried changing the model to TimeSpan but it didn't help

I tried setting the format also on the control and using jquery:

        $("#ShiftStartDt").kendoTimePicker({
            format: "HH:mm"
        });

 

still always shows "h:mm tt" always, no matter what I do

 

Regards

Raff

Completed
Last Updated: 19 Jun 2020 09:11 by ADMIN
Release 2020.R2.SP1
Created by: Bruno
Comments: 1
Category: DateTimePickers
Type: Bug Report
0

using DateTimePicker new features  .ComponentType("modern") in french localization, the new feature are show in english and not in french.

 

Unplanned
Last Updated: 27 Mar 2020 21:26 by ADMIN
Created by: Ram
Comments: 0
Category: DateTimePickers
Type: Feature Request
2
I'd like to request the functionality to be able to type through to each section of the Kendo UI DatePicker instead of pressing the left and right arrows automatically.