Ageonix
Ageonix

Reputation: 1808

Slow Page Loading Issue With Latest Kendo Release

We upgraded the Telerik Kendo library in our web application last week from V2015.2.902 to V2016.1.112. Since then, we've noticed that the pages that use Kendo take a very long time to load (30 seconds up to 2 minutes). I used some tools to analyze the http traffic, and they appear to take so long because the browser is downloading the full Kendo js file (5mb) every time a page is accessed. Once it loads the first time, postbacks are near-instant and the issue goes away. But once you browse away and back, or restart the browser, its back to slow-loading again. The only other thing we changed was switching from the full kendo library to the minified one. And yes, we did update all references in our pages to point to the minified version. Even if it does have to load the Kendo file each time, I wouldn't think a 5mb file would take a minute or two to download.
Here is my reference. I've confirmed the path is correct and the file is there. I'm testing in IE11.

<script src="Kendo/js/kendo.all.min.js"></script>


Has anyone had this happen?
Thanks for the help!

Upvotes: 2

Views: 2390

Answers (1)

Ohjay44
Ohjay44

Reputation: 897

Which Kendo libraries are you using? You can always use their CDN which should help with the speed. If you are testing in chrome with an unminified js file from Kendo then it is also possible that it will run slower. I suggest if your not going to use their CDN then try downloading the minified files.

Upvotes: 2

Related Questions