这里显示的是剑道 jquery 调度器的一个很好的演示 http://demos.telerik.com/kendo-ui/web/scheduler/index.html
我的问题是:是否可以修改日期标题单元格的颜色(即包含日期的每一行左侧的单元格).. 例如,我希望前 8 小时为绿色,接下来的 8 小时为红色,然后很快
这里显示的是剑道 jquery 调度器的一个很好的演示 http://demos.telerik.com/kendo-ui/web/scheduler/index.html
我的问题是:是否可以修改日期标题单元格的颜色(即包含日期的每一行左侧的单元格).. 例如,我希望前 8 小时为绿色,接下来的 8 小时为红色,然后很快
日期标题单元格显示在顶部的工具栏中;你说的是时间标题单元格。
我认为没有配置选项 - 您可以尝试使用majorTimeHeaderTemplate
这样的:
window.colors = ["lightblue", "lightgreen", "lightgrey"];
var template = "<div style='height:100%; width: 100%; background-color: " +
"# var color = window.colors[Math.floor(date.getHours() / 8)]; # " +
"#= color #;'><strong>#=kendo.toString(date, 'hh:mm')#</strong></div>";
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
majorTimeHeaderTemplate: kendo.template(template),
dataSource: [{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview"
}]
});
(演示)
不幸的是,您无法使用模板更改容器的样式,因此如果您不喜欢空格,则必须修改源代码kendo.ui.DayView.fn._layout
;我只是在此处粘贴相关摘录 - 想法是根据时间向该行添加另一个类:
this._forTimeRange(this.startTime(), this.endTime(), function (date, majorTick, middleRow, lastSlotRow) {
var template = majorTick ? that.majorTimeHeaderTemplate : that.minorTimeHeaderTemplate;
var colorClass = window.colors[Math.floor(date.getHours() / 8)];
var row = {
text: template({
date: date
}),
className: lastSlotRow ? "k-slot-cell" : ""
};
row.className += colorClass; // we can then style the row using this selector
rows.push(row);
});
(演示)
您可以对其他视图类型使用类似的方法。
你应该可以用 CSS 做到这一点。就像是:
.k-scheduler-times tr:nth-child(-n+8)
{
background-color: green;
}
.k-scheduler-times tr:nth-child(n+9):nth-child(-n+16)
{
background-color: red;
}