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
100
UltraTimeLineView Appointments drag
posted

Hi all!

I'm using the control ultratimelineview and i'm struggling with the appointmens drag.

How can I get the event of the end of the appointmens drag? I don't wan't any kind of overlapping, so I need to verify at the end of the drag (not in the dragging) if the appointment is overlaping another. I'm using this control to show production orders in the respectif production lines, so it's not possible to produce more than one production order at the same time in the same line.

Thanks

Hugo

Parents
  • 100
    Verified Answer
    Offline posted

    Found the answer...

    In the AppointmentsDragging event there is a parameter that indicates if the dragging is complete

    private void ultraTimelineView1_AppointmentsDragging(object sender, Infragistics.Win.UltraWinSchedule.AppointmentsDraggingEventArgs e)


    if (e.Phase == Infragistics.Win.UltraWinSchedule.AppointmentDragPhase.Ending)

    Thank you


Reply Children