Unplanned
Last Updated: 20 Nov 2023 15:58 by hika

I noticed that in version 2023.2.606 you introduced some Date Editing enhancements for the DateInput component, like:

but these options aren't available for other DatePickers that implement the DateInput internally:

@(Html.Kendo().DateTimePicker()
              .Name("datepicker")
              .DateInput()
)
Please add the configuration properties available for the DateInput to the Components that support date input as well.

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: 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: 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.
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.