I know I can control the color of all cells or a set of cells (e.g. Sat column) but how do I control the background color of a specific cell. For example if I wanted all user defined holidays to be yellow (the entrie cell not just an appt) how would I do this? Thanks.
Here's code that might help. Handle the TimeSlotCreated event of the scheduler.
'Render different colors for different schedules.
Protected Sub RadScheduler1_TimeSlotCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.TimeSlotCreatedEventArgs) Handles RadScheduler1.TimeSlotCreated
Dim calDay As BusinessObjects.ScheduleObjects.CalendarDay = BusinessObjects.ScheduleObjects.CalendarDay.GetCalendarDay(e.TimeSlot.Start)
Select Case calDay.DailySchedulesID
Case 1
e.TimeSlot.CssClass = "noschool"
Case 2
e.TimeSlot.CssClass = "halfday"
Case 3
e.TimeSlot.CssClass = "facultymeeting"
Case 4
e.TimeSlot.CssClass = "morningassembly"
End Select
End Sub