private void ultraCalendarInfo1_AfterCloseAppointmentDialog(object sender, AppointmentEventArgs e)
This event is not firing after closed the appointment dialog box. i am using Version 7.3. This event description is written like this "Fired after an appoinment dialog is displayed". I need that event for my project.
Thanks in advance.
I could not reproduce the behavior you describe here with a simple test. You should log an incident with Developer Support and include a test project that demonstrates this behavior.
Hi...
I am using custom AppointmentDialog, thats why the "AfterCloseAppointmentDialog" event is not firing.
My code is given below.
private void ultraCalendarInfo1_BeforeDisplayAppointmentDialog(object sender, Infragistics.Win.UltraWinSchedule.DisplayAppointmentDialogEventArgs e)
{
MyAppointmentDialog dlg = new MyAppointmentDialog();
}
how i will fire "AfterClose" event in this senario. pls help me... Thanks in advance...
Sudha