Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
480
catching resize events on Appointments in UltraTimeLineView
posted

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.

 

 

 

Parents
No Data
Reply
  • 40
    Suggested Answer
    posted

    oh its 

        ultraTimelineView1.AppointmentResizing += new AppointmentResizingHandler(ultraTimelineView1_AppointmentResizing);

Children