I have a calender usually depicting the current month with multiple selection of dates. How can I disable the automatic selection of TODAY. If a date on the calendar has not been selected programmatically it should not appear. How do I disable the automatic today selection?
Thank you
Karl
1 Answer, 1 is accepted
0
Boyko Markov
Telerik team
answered on 18 May 2009, 12:37 PM
Hello Karl Golling,
There are 2 possible workarounds here.
1. You can define a new theme using our VisualStyleBuilder tool and add/remove any of the custom settings about the Today state of CalendarCellElement.
2. You can subscribe to the ElementRender event of RadCalendar. Here is a sample code which resets the Today state when the cells are rendered:
this.radCalendar1.ElementRender += new RenderElementEventHandler(radCalendar1_ElementRender);