
7 Answers, 1 is accepted
This is a known issue, which is fixed. Next internal build (available only for customers only) will include the fix.
Georgi Krustev
the Telerik team

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.
Georgi Krustev
the Telerik team

Another bug on IE9:
'close' event fired before calendar closed (IE9 compat mode/IE8 document mode).
IE8/Firefox are fine.
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.
Georgi Krustev
the Telerik team

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
The aforementioned issue is already addressed and the fix will be available in the next official release.
Georgi Krustev
the Telerik team