如何使用KendoUI在Calendar小部件中每天添加自定义类

时间:2013-06-27 16:16:45

标签: kendo-ui

正如标题所述,如何使用KendoUI在Calendar Widget中每天添加自定义类

$(document).ready(function () {
    // create Calendar from div HTML element
    $("#calendar").kendoCalendar();
});

如何在日历中的每一天添加课程“check_day”。

感谢您的阅读。

1 个答案:

答案 0 :(得分:1)

可能使用kendo template

例如,在他们的演示页面中尝试这个

$("#calendar").kendoCalendar({
    month: {
        // template for dates in month view
        content: '<div class="check_day"> #: data.value #</div>'
    },
    footer: false
});