I am using "CalendarExtender" control of AjaxControlToolkit to display calendar. All the days after a specific date are disabled for user to make a selection.This is achevied by using the following:
Calendar1.EndDate=new DateTime(2013, 12, 13);
By default the days after 13th Dec will be disabled with "line-through" text decoration. Also the "CalendarExtender" control will make use of default css classes.
I want to apply custom theming to the "CalendarExtender" control and did so by defing my custom css classes.By doing so, the days after 13th Dec that will be displayed with "line-through" text decoration indicating the days are disabled will be gone.
But I wanted to display disabled/grayed out days with different background color instead of "line-through" text decoration and enabled days(days before 13th Dec) with different background color.
I am not able to figure out how to achieve this. Please let me know how this can be done.
BR,
Arjun