This is a migrated thread and some comments may be shown as answers.

Bug in calendar

7 Answers 229 Views
Date/Time Pickers
This is a migrated thread and some comments may be shown as answers.
Daniel Probst
Top achievements
Rank 1
Daniel Probst asked on 04 Jan 2012, 11:48 PM
It's quite simple: If you're go back from January, the calendar jumps back to November instead of December. This happens on your online demos as well. (At least with Chrome, but I don't think this is a browser problem and I don't have time to try another one)

7 Answers, 1 is accepted

Sort by
0
Georgi Krustev
Telerik team
answered on 05 Jan 2012, 09:11 AM
Hi,

 
This is a known issue, which is fixed. Next internal build (available only for customers only) will include the fix.

All the best,
Georgi Krustev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Willem
Top achievements
Rank 1
answered on 08 Feb 2012, 12:18 PM
I see that the trialversion of kendo ui is a different minor version (2011.3.1407) as the open source version (2011.3.1129). When will version 1407 be available to download under the open source license. I see that in this version the issue with the datepicker skipping november is fixed so i would like to download this and implement it into our project. Please can you tell me when this version will be released?
0
Georgi Krustev
Telerik team
answered on 08 Feb 2012, 12:36 PM
Hello Willem,

 
The service pack of the Q3 2011 release of Kendo UI (2011.3.1407 version) and is available only for customers. Users with a trial or GPL version of Kendo UI should wait for next official release of Kendo UI scheduled for the March 2012.

Greetings,
Georgi Krustev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Andrey
Top achievements
Rank 1
answered on 14 Mar 2012, 06:42 PM
v2011.3.1407
Another bug on IE9:
 'close' event fired before calendar closed (IE9 compat mode/IE8 document mode).
IE8/Firefox are fine.
0
Georgi Krustev
Telerik team
answered on 16 Mar 2012, 09:29 AM
Hello,

 
The close event is raised when the popup is about to close. This event is cancellable. This also is applicable for the open event. Everything works fine on my end ising IE9.

Regards,
Georgi Krustev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Andrey
Top achievements
Rank 1
answered on 16 Mar 2012, 04:14 PM

The name 'close' is misleading, it should be called 'closing'.

Here is another defect I just have found:
Below is the code that doesn't work on IE9(IE9 compat mode/IE8 document mode), dropdown just doesn't appear:<

 


<
div>
    <input id='timepicker' value='10:00 AM'>
</div>
<script>
    $(document).ready(function() {
        $('#timepicker').kendoTimePicker();
    });
</script>

 

here is the hack to fix it:

<div style='height:1px;'>
     <input id='timepicker' value='10:00 AM'>
</div>
<script>
     $(document).ready(function() {
        $('#timepicker').kendoTimePicker();
        $('#timepicker').data('kendoTimePicker').open();
        $('#timepicker').data('kendoTimePicker').close();
     });
</script>

Regards,
Andrey

 

 

 

 

0
Georgi Krustev
Telerik team
answered on 17 Mar 2012, 04:33 PM
Hi,

 
The aforementioned issue is already addressed and the fix will be available in the next official release.

Regards,
Georgi Krustev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Date/Time Pickers
Asked by
Daniel Probst
Top achievements
Rank 1
Answers by
Georgi Krustev
Telerik team
Willem
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Share this question
or