如果我使用时间线视图,如何使周末的颜色与其他工作日不同?例如,如何将周末背景颜色更改为浅黄色。我尝试过使用它,但如果该月不包含事件,则颜色不会改变。
scheduler.templates.timeline_cell_class = function(evs, x, y) {
if (x.getDay() == 6 || x.getDay() == 0) {
return getWeekendClass();
}
};
var getWeekendClass = function() {
return "weekend_cell";
};