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
1205
UltraTextEditor TextChanged Event in WinGrid
posted

Hi All,

I'm using an UltraTextEditor embedded in a wingrid cell but I can't see how to trap the TextChanged event of the editor.  Providing an event handler for the editors TextChanged event is not working, I assume there is something else I need to trap for an embedded text editor?

Denis

Parents
No Data
Reply
  • 37774
    posted

    When you're embedding an EditorControl within the grid, you can't rely on many of those editor's events being fired, since it is the Owner's responsibiliy of managing the editor (there are some exceptions when the grid doesn't have a corresponding action, like the EditorButtonClick, or LinkClick in the UltraFormattedTextEditor, that will be fired on the main control).  What you should be doing in this particular case is looking at the CellChange event of the grid.

    -Matt

Children