0

如标题所述,如何使用 KendoUI 在日历小部件中的每一天添加自定义类

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

如何将类“check_day”添加到日历中的每一天。

感谢您的阅读。

4

1 回答 1

1

也许使用剑道模板?

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

$("#calendar").kendoCalendar({
    month: {
        // template for dates in month view
        content: '<div class="check_day"> #: data.value #</div>'
    },
    footer: false
});
于 2013-06-27T17:29:41.817 回答