Hi,
Is there a way to change background color of sat and sun header in month view and week view. Something like below image.
Thank you.
Hi,
Is there a way to change background color of sat and sun header in month view and week view. Something like below image.
Thank you.
Hi,
Yes, just apply background color for the required cells by CSS:
.dhx_scheduler_week .dhx_scale_bar:nth-child(1),
.dhx_scheduler_week .dhx_scale_bar:nth-child(7),
.dhx_scheduler_month .dhx_scale_bar:nth-child(1),
.dhx_scheduler_month .dhx_scale_bar:nth-child(7){
background: lightgray;
}
It worked. Thank you Polina.