Using the techniques described in KB Article "(ID#1059) Setting special days or time slots in RadScheduler" I am able to set the css as described for any cell in any column exept the first one (in a week view ).
While in debug I noticed that it is firing twice for every cell created (eg goes thru Sun Column, then Mon Column etc... then Sun, then Mon etc. again.
As a test I tried the following:
void RadScheduler1_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
{
e.TimeSlot.CssClass = "disabled";
}
("disabled" CSS had a background of Red )
Expecting all cells to be Red, all were, exept the first column. I see it execute the statement for every cell but does not render the first column.
Any idea of why it goes thru this method twice ? and only the first column is not rendered?
Thanks - Len