I am on NetAdvantage 11.1. I have a scheduling application I and implementing with an UltraTimeLineView.
I would like to catch the move(drag) and resize events on the appointments. I need to make the other controls react in various ways to a resize in real time.
1) I need to contrain the appointments so that when the user drags the start or end time the other appointment are automatically adjusted so there are no overlaps. In other words if the user drags the StartTime of Appointment 'D' then the preceeding Appointment 'C' should have a corrisponding decrease in its EndTime.
2) I need to propogate the new state values to other controls in the form and properly reflect the changes.
oh its
ultraTimelineView1.AppointmentResizing += new AppointmentResizingHandler(ultraTimelineView1_AppointmentResizing);
Hello,
Yes, the AppointmentResizing event should be able to handle what you've requested. To learn more about this event, I recommend looking over our online documentation found here.
Please let me know if you have further questions.