Kendo UI directives require jQuery to be available before AngularJS with the Kendo grid in the routing pattern using Html5mode

Why kendo loads before jQuery in an angular routing template with a Kendo grid.

I ordered the scripts by clicking any event through angular routing patterns, getting this error in the console.

Note. When the page is refreshed, the scripts load properly, the application works fine without receiving any errors.

Only in event routing. kendo load before jquery why.

order scripts : <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js"></script> <script src="https://code.angularjs.org/1.3.8/angular.js"></script> <script src="//kendo.cdn.telerik.com/2016.2.714/js/kendo.all.min.js"></script> <script src="https://code.angularjs.org/1.3.8/angular-sanitize.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.3.1/angular-ui-router.js"></script> 
+5
source share
2 answers

I had the same problem: I downloaded jQuery twice.

+2
source

There was the same problem. Solved it using jQuery and angular, which comes bundled with kendo

+1
source

All Articles