如标题所述,如何使用 KendoUI 在日历小部件中的每一天添加自定义类
$(document).ready(function () {
// create Calendar from div HTML element
$("#calendar").kendoCalendar();
});
如何将类“check_day”添加到日历中的每一天。
感谢您的阅读。
如标题所述,如何使用 KendoUI 在日历小部件中的每一天添加自定义类
$(document).ready(function () {
// create Calendar from div HTML element
$("#calendar").kendoCalendar();
});
如何将类“check_day”添加到日历中的每一天。
感谢您的阅读。
也许使用剑道模板?
例如,在他们的演示页面中试试这个
$("#calendar").kendoCalendar({
month: {
// template for dates in month view
content: '<div class="check_day"> #: data.value #</div>'
},
footer: false
});