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.
Hi Michael,
It is the day in the MonthViewMulti that is not bold. Please see the attachment. June 13 has an appointment that starts and end at 12:00:00 AM. As you can see in the screenshot, the day 13 in the top left calendar is not bold.
Trent
Hello tnguyen13,
If an appointments that have a start and end date on the same day, the text will not be bold. Please use the following to allow all appointment text to bold.
this.ultraCalendarLook1.AppointmentAppearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.True;
Let me know if this is what you are looking for.
Yes, I have reproduced this issue in your code. The time needs to be 12:00:00AM. See the zip attachment.
I just changed my sample to make the start and end time exactly the same and I cannot reproduce the issue. The day number in the header is still bold. However because the 6th of June was yesterday, the Appointment text is no longer bold. That is expected behavior. Are you stating that for date numbers in the header are not bold, even for future dates? Have you reproduced this in my sample?
I found the issue. If the Start Date = End Date and both their time is 12:00:00 AM, the day won't be bold.
If Start Time = "06/06/2013 12:00:00 AM" and End Time="06/06/2013 12:00:00 AM", the day won't be bold.
Is that correct?
Thank you,