正如标题所述,如何使用KendoUI在Calendar Widget中每天添加自定义类
$(document).ready(function () {
// create Calendar from div HTML element
$("#calendar").kendoCalendar();
});
如何在日历中的每一天添加课程“check_day”。
感谢您的阅读。
答案 0 :(得分:1)
可能使用kendo template?
例如,在他们的演示页面中尝试这个
$("#calendar").kendoCalendar({
month: {
// template for dates in month view
content: '<div class="check_day"> #: data.value #</div>'
},
footer: false
});