I'm trying to user html date picker within a html form it works fine in IE 8 & 9 compatibility mode but in IE 7 mode the calendar opens up but it does not close. Here is my source
Any idea as to what could be wrong?
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script src="../Scripts/jquery-1.7.1.min.js" type="text/javascript"></script> <link href="../Styles/kendo.metro.min.css" type="text/css" rel="stylesheet"/> <link href="../Styles/kendo.common.min.css" type="text/css" rel="stylesheet"/> <script src="../Scripts/kendo.all.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $("#kendoDatePicker").kendoDatePicker(); }); </script></head> <body> <form id="someform" action=""> <input id="kendoDatePicker" type="text" /> </form> </body></html>Any idea as to what could be wrong?
