2013-06-27 75 views
0

添加自定義類每一天在日曆控件正如標題狀態,在每一天的日曆空間如何添加自定義類KendoUI如何與KendoUI

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

如何添加班級「check_day」到日曆中的每一天。

謝謝您的閱讀。

回答

1

使用kendo template也許?

例如,試試這個在他們的演示頁

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