kendo UI 入门

Kendo UI 是一套前端开发宽假,意为日本的“剑道”

首先到官方网站下载最新的30天试用版,地址为:http://www.telerik.com/download/kendo-ui

需要简单注册一下才能下载,如果嫌麻烦,我这里有个2014-09-25下载的包

下载后解压,得到如下目录:

examples :示例演示

js : 主要javascript 文件

styles : 主要CSS文件

--------------------------------------------------

怎么用?

在你的本地D盘建个目录KendoDemo,然后拷贝js和styles文件夹到里面去,再建个index.html文件

<!DOCTYPE html>
<head>
    <title>Welcome to Kendo UI!</title>
    <!-- Common Kendo UI CSS -->
    <link href="styles/kendo.common.min.css" rel="stylesheet" />

    <!-- Default Kendo UI theme CSS -->
    <link href="styles/kendo.default.min.css" rel="stylesheet" />

    <!-- (optional) Kendo UI DataViz CSS, include only if you will use the data visualisation features -->
    <link href="styles/kendo.dataviz.min.css" rel="stylesheet" />

    <!-- (optional) Kendo UI Mobile CSS, include only if you will use the mobile devices features -->
    <link href="styles/kendo.default.mobile.min.css" rel="stylesheet" type="text/css" />

    <!-- jQuery JavaScript -->
    <script src="js/jquery.min.js"></script>

    <!-- Kendo UI combined JavaScript -->
    <script src="js/kendo.all.min.js"></script>
</head>
<body>
    Hello World!
</body>
</html>

参考:http://docs.telerik.com/kendo-ui/install/onsite

Visual Studio 3013 插件下载

http://visualstudiogallery.msdn.microsoft.com/65b78c2c-951e-43a8-bae7-f9039f59fb9b

视频学习

原文地址:https://www.cnblogs.com/wanghaibin/p/3751044.html