Hi
I am quite new about RadControls..
what I need is to programmatically add a SpecialDay to a DatePiker in order to display it with a different color (it is only a reminder for the user..) I do that in this way:
RadCalendarDay day1 = new RadCalendarDay();
day1.Date = (DateTime)andataDP.SelectedDate;
day1.ItemStyle.CssClass = "tripCalendarOtherSelection";
ritornoDP.Calendar.SpecialDays.Add(day1);
this works exept for Days outside the MinDate/Max
(they are always rendered as "disabled/dimmed")
can you help?
Thanks..
Saverio