This question is locked. New answers and comments are not allowed.
I upgraded a project I was working on to the latest extensions (2011.1.315, using NuGet), and now I am getting this error. I was able to reproduce the error in an example project (see attached).
VS2010 SP1
MVC 3 w/ Razor
Telerik.Web.Mvc 2011.1.315.340
jQuery 1.5.1
My example _Layout.cshtml page:
I have included a screen shot from Chrome with the exception. Anyone have any ideas?
VS2010 SP1
MVC 3 w/ Razor
Telerik.Web.Mvc 2011.1.315.340
jQuery 1.5.1
My example _Layout.cshtml page:
@using Telerik.Web.Mvc.UI;<!DOCTYPE html><html><head> <meta charset="utf-8" /> <title>@ViewBag.Title</title> @(Html.Telerik().StyleSheetRegistrar() .DefaultGroup(group => group //.Add("telerik.examples.css") .Add("telerik.common.css") .Add("telerik.Windows7.css") .Add("telerik.rtl.css") .Combined(true) .Compress(true)) ) <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> <!--script src="@Url.Content("~/Scripts/jquery-1.6.1.min.js")" type="text/javascript"></script--> <script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script></head><body> <div class="page"> <header> <div id="title"> <h1>My MVC Application</h1> </div> <div id="logindisplay"> @Html.Partial("_LogOnPartial") </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() //.jQuery(false) )</body></html>I have included a screen shot from Chrome with the exception. Anyone have any ideas?