Telerik DatePicker in IE 10 is not working
asp.net, javascript, telerik
Solution
I added to my web.config (system.webServer) lines:
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=9" />
</customHeaders>
</httpProtocol>
and it fixed the problem.
Problem
In my ASP.NET site, I am using Telerik controls to bind date and time picker, and it works good in all browsers except IE 10, then I ran script debugger it says js error : SCRIPT5007: Unable to get property 'documentElement' of undefined or null reference Telerik.Web.UI.WebResource.axd, line 166 character 2 Anyone knows, how to fix this problem ? Thanks a lot!