search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

How to highlight a cell being hovered by a fill color

Asked by Arvind
3 years ago.

This is in continuation to
https://forums.daypilot.org/question/4367/hightlight-cell-or-display-tooltip-with-time-range-of-cell

Ths solution provided for demo
https://javascript.daypilot.org/demo/scheduler/timerangeselecting.html

it highlights row and column of cell being hovered but not the cell itself. Need the event of hovering overl the cell.

Please let me know how could this be done ?

Answer posted by Dan Letecky [DayPilot]
3 years ago.

You can use :hover CSS selector to define the hover style:

.scheduler_default_cell:hover, .scheduler_default_cell.scheduler_default_cell_business:hover {
  background-color: #ccc;
}
This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.