hello, is it possible to have a button that when the user clicks it it opens a new appointment dialog and when they fill it out and click OK the Collection_Updated event fires in the scheduler just as if they had double clicked a date and added the appointment ?
i have it working except the event does not fire, here is an example of how i am opening the dialog, DoctorAppointment inherits from EditAppointmentDialog
;
i must be missing something!
i have it working except the event does not fire, here is an example of how i am opening the dialog, DoctorAppointment inherits from EditAppointmentDialog
DoctorAppointmentEditForm frm = new DoctorAppointmentEditForm(); frm.practiceid = 1; frm.LoggedInUserID = this.LoggedInUserID; frm.PracticeListView = this.radPracticeView; frm.ShowDialog();i must be missing something!
