gpt4 book ai didi

javascript - Dhtmlx Scheduler 时间线为周末上色

转载 作者:太空宇宙 更新时间:2023-11-03 21:34:33 25 4
gpt4 key购买 nike

如果我使用的是时间线 View ,我该如何使周末与工作日的其他时间使用不同的颜色?例如,如何将周末背景颜色更改为浅黄色。我试过使用它,但如果该月不包含事件,则颜色不会改变。

 scheduler.templates.timeline_cell_class = function(evs, x, y) {
if (x.getDay() == 6 || x.getDay() == 0) {
return getWeekendClass();
}
};

var getWeekendClass = function() {
return "weekend_cell";
};

最佳答案

如果您仍然需要答案,您唯一需要做的就是:

scheduler.addMarkedTimespan({
days: [0, 6], // Sunday and Saturday
zones: "fullday",
css: "scheduler_weekends"
});

其中 scheduler_weekends 类似于:

.scheduler_weekends {
background-color: #FFFF00;
opacity: 0.5;
}

这将在除月 View 之外的所有 View 中以黄色显示周末。为了在月 View 中显示,您必须添加到您的 CSS:

.dhx_scheduler_month .dhx_marked_timespan { display: block; }

关于javascript - Dhtmlx Scheduler 时间线为周末上色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27438060/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com