Hi folks!
Is there any way to handle actions inside of Reminder dialog?
I need to implement some operations when people are dismissing appointment/
Thanks in advance.
Hello, I believe that you can use the same approach described here in order to access the “Dismiss” and “DismissAll” buttons:http://community.infragistics.com/forums/t/24602.aspxIn addition you need to find the “Dismiss” and “DismissAll” and attache to the click event and implement the operation that you need. if (control.Name == "cmdDismissAll" || control.Name == "cmdDismiss") control.Click += new EventHandler(control_Click);Just note that this is not recommended workaround and is better to implement own dialog and handle the appropriate actions.I hope this information was helpful, let me know if you have additional questions.DimiDeveloper Support Engineer
Dimitrina Gineva"]if (control.Name == "cmdDismissAll" || control.Name == "cmdDismiss") control.Click += new EventHandler(control_Click);
Dimi!
That's not what I was talkin about. Simple Event Handler does not contain info about current Appointment being dismissed. I need this info also to do some operations - so your solution won't work for me