This question is locked. New answers and comments are not allowed.
There is an issue when creating a new Telerik MVC3 project. It prevents you from running jQuery scripts. When I did the below, it worked fine.
I validated this from the below paragraph:
I validated this from the below paragraph:
The issue is in the _Layout.cshtml file with this code snippet automatically inserted by Telerik when you create a Telerik MVC3 project:
@(Html.Telerik().ScriptRegistrar().Globalization(true).DefaultGroup(group => group.Combined(true).Compress(true)))
The above, should be replaced by this line:
@Html.Telerik().ScriptRegistrar().jQuery(false).DefaultGroup(group => group.Combined(true).Compress(true))
See this link for an explanation:
http://www.telerik.com/community/forums/aspnet-mvc/general/telerik-and-jquery-problem.aspx Telerik should make this modification when creating an MVC3 project. It was driving me crazy...