这是我第一次在CSND上写技术博文,这篇博文也是我从事软件开发之后的第一篇博文。以前,我基本上都是用的Easy UI,Easy UI在中国推广的非常好,有广泛的开发者用户群,也有自己的官方社区论坛,官方的中文文档也十分详细,不像Kendo UI,因为很多核心部件收费,导致在中国推广地非常缓慢,初学者自学起来会很困难,我也是刚接触这个UI框架只有几个月,但是我觉得现在的确是迫不及待了。在百度上搜索关于Kendo UI的资料也很少,所以,我想利用自己算是已经入门的初学者技术,也去引导正在使用或者想要使用这款UI的开发者。

首先,附上Kendo UI的官方英文Demo网站:http://demos.telerik.com/kendo-ui/

然后是Kendo UI的官方在线英文说明文档网站:http://docs.telerik.com/kendo-ui

Kendo UI的官方全功能包试用下载: http://www.telerik.com/download/kendo-ui

Kendo UI的中文汉化包下载地址: https://github.com/telerik/kendo-ui-core/tree/master/src

目前,Kendo UI官方只有全英文的Demo和文档,还没有官方中文的资料面世,所以英语一般的同学自学起来可能会有一点困难,而我会在接下来的博文里代领大家快速入门kendo UI。 不过,我是从事Asp.Net编程的,所以我会偏向于.net三层架构的模式去介绍这个框架,尽量用熟悉的比喻来让初学者更加易懂。

下面这些是需要引用的文件,最后两个带“zh-CN.min.js的是界面汉化包和提示消息汉化包”:

    <link href="Resource/kendo/styles/kendo.common.min.css" rel="stylesheet" />
    <link href="Resource/kendo/styles/kendo.default.min.css" rel="stylesheet" />
    <link href="Resource/kendo/styles/kendo.rtl.min.css" rel="stylesheet" />
    <link href="Resource/kendo/styles/kendo.dataviz.default.min.css" rel="stylesheet"/>
    <link href="Resource/kendo/styles/kendo.dataviz.min.css" rel="stylesheet" />
    <link href="Resource/kendo/styles/kendo.dataviz.material.min.css" rel="stylesheet" />
    <script src="Resource/kendo/js/jquery.min.js"></script>
    <script src="Resource/kendo/js/angular.min.js"></script>
    <script src="Resource/kendo/js/kendo.all.min.js"></script>
    <script src="Resource/kendo/js/cultures/kendo.culture.zh-CN.min.js"></script>
    <script src="Resource/kendo/js/messages/kendo.messages.zh-CN.min.js"></script><span class="token lf">