gpt4 book ai didi

colors - 如何在 Kendo.Scheduler 中自定义行或列颜色?

转载 作者:行者123 更新时间:2023-12-02 07:03:04 24 4
gpt4 key购买 nike

有没有办法自定义kendo.Scheduler行和列的颜色?如果有的话请告诉我怎么做! How to change these rows color?

更新1>这就是答案>

     view.table.find("td[role='gridcell']").each(function () {
if ($(this) != null) {
var element = $(this);
if (element != null) {
var slot = scheduler.slotByElement(element);
if (slot != null) {
var dateSlot = slot.startDate;
if ("20/09/2014 14:00"== dateSlot.toString())
element.addClass("red");
}
}
}
});

您还必须添加以下 css:

.k-scheduler .k-today.red { 
background: #ff6f7b; /*When the slot is today*/
}
.red {
background: #ff6f7b;
}
.k-scheduler .k-state-selected.red { /*The color when you select the slot*/
background: #4070B8;
}

最佳答案

function scheduler_dataBound(e) {
var scheduler = $("#scheduler").data("kendoScheduler");
var view = scheduler.view();
view.table.find("td[role=gridcell]").each(function () {
if ($(this) != null) {
var element = $(this);
if (element != null) {
var slot = scheduler.slotByElement(element);
if (slot != null)
if (slot.startDate, slot.endDate, == "youre times")
element.addClass("youre css clas name ");
}
}
});

关于colors - 如何在 Kendo.Scheduler 中自定义行或列颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23832961/

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