I'd like to be able to get the event after a Appointment(s) is moved, on a UltraWeekView.
UltraDayView has it and works great...
I'm doing a custom Appointment editor (and data) and need to be able to handle when the user changes something on the UltraWeekView (and UltraMonthSingle).
I have also tried handling CalendarInfoChanged on a UltraCalendarInfo... but there's not way to cancel that on a move or edit - I have some rules that tell whether a user is allowed to change a appointment or not.
Any suggestions?
Thanks!
-Greg
Hello stonezz,
You could get the collection of these appointments in the following way:
private void ultraWeekView1_AppointmentsDragDrop(object sender, Infragistics.Win.UltraWinSchedule.AppointmentsDragDropEventArgs e)
{
e.Appointments;
}
Please do not hesitate to contact me if you need any additional assistance.
Hi
I have the same problem.
When I use the AppointmentsDragDrop event - how can I grap the moved Appointments?
Thanks
Hello Greg,
You could try using the 'AppointmentsDragDrop' event of the 'UltraWeekView' control in order to achieve what you want.
Please feel free to let me know if I misunderstood you or if you have any other questions.