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
575
Change default "New Appointment" Text
posted

 how can i change the default "New Appointment" text after double click on the ultradayview to custom default text ...

 

  • 69832
    Offline posted

    You can handle the UltraCalendarInfo.BeforeDisplayAppointmentDialog event, and change properties of the associated Appointment before the dialog appears.

    Example:
    private void calendarInfo_BeforeDisplayAppointmentDialog(object sender, DisplayAppointmentDialogEventArgs e)
    {
        e.Appointment.Subject = "Testing 1 2 3";
    }