Custom Library
Library Installation
This page needs to be reviewed and revritten
Custom Library
Telerik has a nice feature on their website where they allow you to select a set of controls and download a minified javascript that only contains the controls you selected. This is recommended as this file is often smaller in size than kendo.all.min.js.
Hover over the Products and Subscription menu, then click Kendo UI Professional

Click on the "Build your custom download" banner

Select the controls that you use on your website
Scroll to the bottom of the page and decide whether you would like to use Telerik's CDN or if you want to download a javascript file
CDN
Copy the script tags and add them to the
headsection ofindex.html
Add Kendo styles to your index.html
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.2.714/styles/kendo.common.min.css"> <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.2.714/styles/kendo.bootstrap.min.css">
Javascript file
Click on the "Download" button to download kendo.custom.min.js:

Create a folder called
kendo-sdknext to yoursrcfolder
Add kendo.custom.min.js to the
kendo-sdk/js/folder. Also, download the latest Kendo release from the Telerik website (instructions) and extract the following files from the ZIP into thekendo-sdkfolder:js/jquery.min.js
the styles folder

Open index.html and add the following script tags
<script src="kendo-sdk/js/jquery.min.js"></script> <script src="kendo-sdk/js/kendo.custom.min.js"></script>and the following
linktags:<link rel="stylesheet" href="kendo-sdk/styles/kendo.common.min.css"> <link rel="stylesheet" href="kendo-sdk/styles/kendo.bootstrap.min.css">
Last updated