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
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
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.
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
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
Thanks in advance
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>
I'd like to request adding a clear button similar to the Kendo UI ComboBox for the Kendo UI Date/Time pickers.
Thank you!
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
It would be good if the datetimepicker would allow starting weeks from Monday. This is the standard in certain areas.
https://dojo.telerik.com/iyEXeDoH
video to understand the exact behaviour
https://drive.google.com/file/d/1yN3hbYqkdaN8EPT1am7szt7Gvgr07Rnz/view
dojo example
https://dojo.telerik.com/
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
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
User uses down key or mouse scroll to change the time. A 00:00 hour is set instead of chosen hour on blur.
A value chosen by user remains selected. It's not changed by the timepicker.
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
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.
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.
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
Provide properties to set min/max time of the DateTimePicker, e.g always shows from 8AM to 5PM of everyday.
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)
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.