DatePicker day hover highlight

Hi, is there a way we can hover over a day and have that day highlight? Right now, hovering over the day gives no indicator that you are hovering over it.

Hi @aliocamlibel,

Yes, you can use CSS for that. Use your browser's developer tools to inspect the Radzen DatePicker DOM and find the CSS selector you need.

Thanks, I got it with:

.ui-datepicker-calendar > tbody > tr > td:hover {
border: 2px solid blue;
}