Hi,
I saw the outlook sample, and I need to show a week view with days side by side like outlook 2007.
When I click "show work week" I see what I want, and I tried to figure out how to do it but no luck (I looked at the code). My week view looks like two columns with 3 or 4 days in the same column (like outlook 2003).
Also, is it possible to show the days from right to left?
Thanks
Amiram Korach said: I saw the outlook sample, and I need to show a week view with days side by side like outlook 2007. When I click "show work week" I see what I want, and I tried to figure out how to do it but no luck (I looked at the code). My week view looks like two columns with 3 or 4 days in the same column (like outlook 2003).
Please see this thread.
Amiram Korach said:Also, is it possible to show the days from right to left?
I have never tried to do this, but, as a suggestion, isn't the RightToLeft property what you are looking for?
HTH,
Emanuel
Thanks! this works.
About the RightToLeft, unfortunately Infragistics has not implemented that in any control.
Do you know if I can also make those happen:
1. Change the appointment back color according to some data and show red backcolor for a collision.
2. Today should appear as any other day (not orange).
3. Day header should show day of week name only but not day of month.
4. Appointment tool tip should be the appointment description.
Amiram Korach said:1. Change the appointment back color according to some data and show red backcolor for a collision.
See Appointment.Appearance.BackColor. You can use the UltraDayView.CalendarInfo.GetAppointmentsInRange method to determine whether more that one appointment intersects with a given time range.
Amiram Korach said: 2. Today should appear as any other day (not orange).
You can use the UltraDayView.CalendarLook.TodayAppearance/TodayHeaderAppearance to modify the way the current day is depicted.
Amiram Korach said: 3. Day header should show day of week name only but not day of month.
UltraDayView.DayTextFormat = "dddd";Note that there was a bug that prevented this from working correctly, so you might need the latest hotfix for this.
Amiram Korach said: 4. Appointment tool tip should be the appointment description.
Handle UltraDayView's BeforeAppointmentToolTipDisplayed event, like so:private void dayView_BeforeAppointmentToolTipDisplayed(object sender, BeforeAppointmentToolTipDisplayedEventArgs e){ e.ToolTipText = e.Appointment.Description;}
Amiram Korach said:Do you know if I can also make those happen: 1. Change the appointment back color according to some data and show red backcolor for a collision. 2. Today should appear as any other day (not orange). 3. Day header should show day of week name only but not day of month. 4. Appointment tool tip should be the appointment description.
Amiram - ALL of this can be achieved very easily. Please try searching the documentation and this forum for answers to these questions. many of these topics have been discussed MANY times in this forum already.
Sorry for the Rant but it gets very annoying to see the same questions asked over and over again because people won't go and search themselves.
CheersAaron (AKA Grumpy)