This question is locked. New answers and comments are not allowed.
Steps to reproduce:
Add Slider and Editor to the Index page:
Open Index page in IE9 and click on the slider => IE9 stop's working.
- VS2010 Sp1 MVC3 project template
- Telerik MVC Extensions 2012.1.214 installed via NuGet
Add registrators to the layout page:
@using Telerik.Web.Mvc.UI<!DOCTYPE html><html><head> <meta charset="utf-8" /> <title>@ViewBag.Title</title> <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> @{ Html.Telerik().StyleSheetRegistrar() .DefaultGroup(group => group.Add("telerik.common.css") .Add("telerik.vista.css")).Render(); }</head><body> <div class="page"> <header> <div id="title"> <h1>My MVC Application</h1> </div> <div id="logindisplay"> Welcome <strong>@User.Identity.Name</strong>! </div> <nav> <ul id="menu"> <li>@Html.ActionLink("Home", "Index", "Home")</li> <li>@Html.ActionLink("About", "About", "Home")</li> </ul> </nav> </header> <section id="main"> @RenderBody() </section> <footer> </footer> </div> @{ Html.Telerik().ScriptRegistrar().Render(); } </body></html>Add Slider and Editor to the Index page:
@using Telerik.Web.Mvc.UI@{ ViewBag.Title = "Home Page";}<h2>@ViewBag.Message</h2><p> To learn more about ASP.NET MVC visit <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc<;/a>.</p> @(Html.Telerik().Slider<double>() .Name("Slider") .Min(1) .Max(4) .SmallStep(1) .LargeStep(1) .Orientation(SliderOrientation.Vertical) .ShowButtons(false) .TickPlacement(SliderTickPlacement.None) .Value(1))@{ Html.Telerik().Editor() .Name("editor") .HtmlAttributes(new { style = "height:400px" }) .Encode(false) .Render(); }Open Index page in IE9 and click on the slider => IE9 stop's working.