I upgraded my mvc3 project to mvc4 and also Telerik 2013 Q3 to 2014 Q1. it's my app_start > RegisterBundles
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery.min.js"));
bundles.Add(new ScriptBundle("~/bundles/kendo-web").Include(
"~/Scripts/kendo.web.min.js",
"~/Scripts/kendo.aspnetmvc.min.js",
"~/Scripts/kendo.timezones.min.js"));
bundles.Add(new StyleBundle("~/Content/web/css").Include(
"~/Content/web/kendo.common.min.css",
"~/Content/web/kendo.rtl.min.css",
"~/Content/web/kendo.default.min.css"));
bundles.IgnoreList.Clear();
it's my Application_Start
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
and this is _Layout.cshtml
<link href="@Url.Content("~/Content/site.css")" rel="stylesheet" type="text/css" />
@Styles.Render("~/Content/web/css")
@Styles.Render("~/Content/shared/css")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/kendo-web")
but when I Run the web site I got this error :
Unhandled exception at line 50, column 199 in http://localhost:62089/Scripts/jquery.validate.min.js
0x800a138f - JavaScript runtime error: Unable to get property 'call' of undefined or null reference
If there is a handler for this exception, the program may be safely continued.
I upgraded jquery.validation to latest version but this error is remained. what is this error for? I upgraded all required dependencies. there is problem in IE11 and In firefox I don't have this.