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
About the RightToLeft, as I said Infragistics has ignored that as far as I know, but I tried today to create my first creation filter and looks like it is very simple to do it:
{
parent.ChildElements[i].Rect = parent.ChildElements[parent.ChildElements.Count - (i + 1)].Rect;
parent.ChildElements[parent.ChildElements.Count - (i + 1)].Rect = rect;
}
I wonder if I can make more controls be right-to-left like that.
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.