0

这是一个非常基本的问题 - 我如何创建 Kendo UI 控件/如何让 Kendo 小部件显示?

例如。我为日历控件尝试了这个。我将 js 文件复制到 js 文件夹

  • 分钟
  • 网络
  • 文档
  • 日历

并链接了 2 个样式文件。

当我有以下脚本来实例化日历小部件时

<script>
    $(document).ready(function () {
        $("#cal").kendoCalendar({
            value: new Date(),
            min: new Date(1950, 0, 1),
            max: new Date(2049, 11, 31)
        });
    });
</script>

但是在 .kendoCalendar() 实例化日历时出现错误。

有人可以帮我弄这个吗?

提前致谢。

4

1 回答 1

1

你只需要包括:

<!-- Kendo UI Web styles-->
<link href="styles/kendo.common.min.css" rel="stylesheet" type="text/css"/>
<link href="styles/kendo.default.min.css" rel="stylesheet" type="text/css"/>

<!-- jQuery scripts-->
<script src="js/jquery.min.js" type="text/javascript"></script>

<!-- Kendo UI Web scripts-->
<script src="js/kendo.web.min.js" type="text/javascript"></script>

kendo.web.min.js包括所有小部件。包括这个就足够了。

你没提jquery.min.js。检查您是否也拥有它。

这是 HTML:

<div id="cal" name="cal"/>

编辑:使用文件 fomr KendoUI CDN 的完整示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8"/>
    <title>OnaBai - KendoUI Calendar example</title>
    <!-- Kendo UI Web styles-->
    <link href="http://cdn.kendostatic.com/2012.3.1114/styles/kendo.common.min.css" rel="stylesheet"/>
    <link href="http://cdn.kendostatic.com/2012.3.1114/styles/kendo.default.min.css" rel="stylesheet"/>

    <!-- Kendo UI Web scripts-->
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://cdn.kendostatic.com/2012.3.1114/js/kendo.web.min.js"></script>

    <!-- Initialize Form Elements -->
    <script type="text/javascript">
        $(document).ready(function () {
            $("#cal").kendoCalendar({
                value: new Date(),
                min  : new Date(1950, 0, 1),
                max  : new Date(2049, 11, 31)
            });
        });
    </script>

</head>
<body>
<div id="cal" name="cal"/>
</body>
</html>
于 2013-01-23T15:18:54.500 回答