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
270
How to handle Dismiss and other actions in reminder dialog?
posted

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.

Parents
No Data
Reply
  • 12773
    posted

    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.aspx

    In 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.

    Dimi
    Developer Support Engineer

Children