We are upgrading from v9.2 to v12.1. In v9.2, the day in the month view calendar would be bold if there was something on that day. Now, it looks like all the days are bold even if there is nothing for that day. Does anyone know how to fix this?
Thank you.
Hello tnguyen13,
Thank you for contacting Infragistics.
Are you setting the ultraCalendarLook view style to Office2007? If so, the view is causing all the dates to be bold. I have attached a sample that demonstrates how to override the ultraCalendarLook appearance. This will only show bold dates with appointments.
this.ultraCalendarLook1.DayHeaderAppearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.False; this.ultraCalendarLook1.DayWithActivityAppearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.True;
this.ultraCalendarLook1.DayHeaderAppearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.False;
this.ultraCalendarLook1.DayWithActivityAppearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.True;
Hi Michael,
Yes, I am using Office2007 style. The change completely removed the bold in the activity calendar. Those days are fine bolded. It is in the day in the Month calendar that is not bold. I am currently using Windows 7 and Office 2010.
Trent