oopsdazie
oopsdazie

Reputation: 761

Kendo Scheduler change today's cell background color in month view

I need to change the background color of the current date cell in of a Kendo Scheduler in month view.

I have looked through their documentation, but have not found any related topic.

Upvotes: 1

Views: 1073

Answers (1)

oopsdazie
oopsdazie

Reputation: 761

I have found the answer. It is actually very simple. Just use the following code in css:

.k-scheduler .k-today {
    background-color: lightgreen;
}

Upvotes: 1

Related Questions