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
40
custom Appointment edit dialog
posted

I am using NetVantage 11.1

I have Appointments in  UltraTimeLineView, 

How do I launch my own custom editor when the user double clicks?

My appointments are much more complicated data....

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello,

    You could use the following code:

            private void ultraCalendarInfo1_BeforeDisplayAppointmentDialog(object sender, Infragistics.Win.UltraWinSchedule.DisplayAppointmentDialogEventArgs e)
            {
                e.Cancel = true;
                //...
            }
    

     Please do not hesitate to contact us if you need any additional assistance.

Children