This question is locked. New answers and comments are not allowed.
Hi,
I just upgrade my Telerik ASP.NET MVC extensions to 2011.1.315 and I am receiving the following javascript error in telerik.textbox.min.js while trying to use a generic textbox control:

Here is the code in my view:
I initially tried it without adding jquery-1.4.4.min.js and setting Html.Telerik().ScriptRegistrar().jquery(true), however, I got the error that it couldn't find jquery-1.4.4.min.js, so that is why I had to add it. Any insight would be great. Thanks.
Bronwyn
I just upgrade my Telerik ASP.NET MVC extensions to 2011.1.315 and I am receiving the following javascript error in telerik.textbox.min.js while trying to use a generic textbox control:
Here is the code in my view:
@using Telerik.Web.Mvc.UI <html> <head> <script type="text/javascript" src="@Url.PortalContent("/Scripts/jquery-1.4.4.min.js")"></script> </head> <body> <div> @(Html.Telerik().IntegerTextBox() .Name("textbox") .MinValue(1) .MaxValue(25) .IncrementStep(1) .Value(3)) </div> </body> </html> @Html.Telerik().ScriptRegistrar().jQuery(false)
I initially tried it without adding jquery-1.4.4.min.js and setting Html.Telerik().ScriptRegistrar().jquery(true), however, I got the error that it couldn't find jquery-1.4.4.min.js, so that is why I had to add it. Any insight would be great. Thanks.
Bronwyn