Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/joomla/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Kendo ui 如何使用KendoUI将自定义类添加到日历小部件中的每天_Kendo Ui - Fatal编程技术网

Kendo ui 如何使用KendoUI将自定义类添加到日历小部件中的每天

Kendo ui 如何使用KendoUI将自定义类添加到日历小部件中的每天,kendo-ui,Kendo Ui,如标题所述,如何使用KendoUI在日历小部件中的每天添加自定义类 $(document).ready(function () { // create Calendar from div HTML element $("#calendar").kendoCalendar(); }); 如何将类“check_day”添加到日历中的每一天 感谢您的阅读。请使用“可能”按钮 例如,在他们的演示页面中尝试这一点 $("#calendar").kendoCalendar({ mo

如标题所述,如何使用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
});
$(“#日历”).kendoCalendar({
月份:{
//月视图中日期的模板
内容:'#:data.value#'
},
页脚:false
});