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
340
Event handlers for two buttons in ButtonsRight of UltraTextEditor
posted

I have an UltraTextEditor which has two buttons in the ButtonsRight collection.

I know that there is an event called EditorButtonClick, for handling the click event, but how do I handle clicks for these two buttons in code??

  • 469350
    Verified Answer
    Offline posted

    Hi,

     The EditorButtonClick will fire for both buttons. The event args will give you the button that was clicked so you can distinguish between the two. The best thing to do is to assign each button a unique Key value, so you can use the Key to identify which is which.