4 Answers, 1 is accepted
0
Accepted
Hi Marco,
You can modify the background color of the today slot by overriding the k-today CSS class. Similar to the following:
Regards,
Rosen
Telerik
You can modify the background color of the today slot by overriding the k-today CSS class. Similar to the following:
<style>
.k-scheduler .k-today {
background
: inherit;
}
</style>
Regards,
Rosen
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Marco
Top achievements
Rank 1
Iron
answered on 19 Mar 2014, 02:14 PM
Hi Rosen,
Thanks for your answer. This makes the whole table white with the bootstrap theme. I want the "out of office" cells in the same color as any other day. Is this possible?
Kind Regards,
Marco
Thanks for your answer. This makes the whole table white with the bootstrap theme. I want the "out of office" cells in the same color as any other day. Is this possible?
Kind Regards,
Marco
0
Accepted
Hi Marco,
In order to apply the styling for nonwork hours cells you should add the following CSS:
Regards,
Rosen
Telerik
In order to apply the styling for nonwork hours cells you should add the following CSS:
.k-scheduler .k-today.k-nonwork-hour {
background
:
#f5f5f5
;
}
Regards,
Rosen
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Marco
Top achievements
Rank 1
Iron
answered on 19 Mar 2014, 03:03 PM
Hi Rose,
Thanks for the quick reply! Works fine...
Kind Regards,
Marco
Thanks for the quick reply! Works fine...
Kind Regards,
Marco