Hi,
how it is possible to Highlight the current day in the RadScheduler - Control?
I want to highlight the current day like outlook do it. (see attached screenshot)
CSS
| <style type="text/css"> |
| div.RadScheduler_Office2007 .rsMonthView .rsTodayCell |
| { |
| background-color: red; |
| color: #fff; |
| } |
| </style> |
| <telerik:RadScheduler ID="RadScheduler" runat="server" Width="100%" |
| OnTimeSlotCreated="RadScheduler_TimeSlotCreated" /> |
| </telerik:RadScheduler> |
| protected void RadScheduler_TimeSlotCreated(object sender, Telerik.Web.UI.TimeSlotCreatedEventArgs e) |
| { |
| if (DateTime.Compare(e.TimeSlot.Start.Date, DateTime.Now.Date) == 0) |
| { |
| e.TimeSlot.CssClass = "RadScheduler_Office2007. rsMonthView. rsTodayCell"; |
| } |
| } |