Running into an issue with KendoUi and the latest version of jQuery ... I have simple ASP.NET MVC project with a single view that renders as follows:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<link href="/Content/site.css" rel="stylesheet"/>
<script src="/Scripts/modernizr-2.5.3.js"></script>
</head>
<body>
<h2>Index</h2>
<script src="/Scripts/jquery-1.9.0.js"></script>
<script src="http://cdn.kendostatic.com/2012.3.1114/js/kendo.all.min.js" type="text/javascript"></script>
</body>
</html>
When I view the page, I am receiving the following error in my javascript console:
Uncaught TypeError: Object function ( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context, rootjQuery );
} has no method 'sub'
kendo.all.min.js:10
Anyone else running into this issue? And what am I doing incorrect?
What jrummell said - we don't officially support jQuery 1.9.0 yet, as it was released on the same day as our service pack. jQuery 1.9.0 has a number of breaking changes since 1.8.x and if you need it to be API compatible with 1.8, please also include the jQuery Migrate plugin.
Update: Kendo UI Q1 2013 supports and ships with jQuery 1.9.1.