Hi...
I am using ultra week view and i want to put an icon the right most side of appointment's slot. I have done this in Ultra Day View by using clsSymbolsCreationFilter class using its following method IUIElementCreationFilter.AfterCreateChildElements. But cannot find the way to put the icon in day view. Please help
Thank You.
The UIElements for WeekView are in the Infragistics.Win.UltraWinSchedule.MonthViewSingle namespace, so you would have to change the references to UltraDayView's elements. If you attach a sample I can hopefully modify it enough to get you started.
Hi,
Well i have prepare a sample application for you in which all three views (Day, Week & Month View Singli) has been shown. Now Icon with appointment on day view is showing as i have written code for it in Symbol Creation class but have no idea how to get the UI Elements of Week View or Month View's appointment. Please guide me.
Thanks.
This literally only requires changing two lines of code:
using Infragistics.Win.UltraWinSchedule.DayView;->using Infragistics.Win.UltraWinSchedule.MonthViewSingle;
and
if (parent is Infragistics.Win.UltraWinSchedule.DayView.AppointmentUIElement)->if (parent is Infragistics.Win.UltraWinSchedule.MonthViewSingle.AppointmentUIElement)
I would suggest you refactor the class to support both types within the same implementation, and then add a constructor that takes some value that identifies which of the controls it is being used by.