I'm sorry if the subject doesn't make much sense but let me explain.
Given the following Example:
When there is a public holiday in one State (for owner #1) then it does not necessarily mean the the same public holiday applies to Owner #2. This means I can't simply DISABLE the day object in the CalInfo to stop users being able to make an appointment on this day, because it means I can't access my valid Room/Owner.
What I wish to achieve is that for the appointment room which has the public holiday... i want to set .IsWorkDay = False to JUST Owner #1 and JUST for that individual date. The IsWorkDay has the nice affect of still making the day available to CALINFO but colors that entire owner as "Unavailable" color.
I can easily set the .IsWorkDay settings per DayOfWeek eg:
Sunday = Is NOT WorkDayMonday = IsWorkDay Tuesday = IsWorkDay...
But is it possible for a specify .IsWorkDay = False for a SINGLE OWNER for a SINGLE DATE OF THE YEAR?
If not... then what is a suitable workaround? Do I have to revert to a CustomDrawFilter or something like that?
RegardsAaron
No, working hours/days cannot be specified on a per-day basis. The following KB article demonstrates how to use a draw filter to change the color of individual TimeSlots, which some consider to be a satisfactory workaround.
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=5595