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
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
Thanks Matt, that's great.
While entering text into the editor I want to display a panel under the editor which will contain a grid of matching values which change as the user types. Any ideas on how I can display this panel but still keep the focus on the editor? I know this could be acheived using an UltraDropDown or UltraCombo as the editor but my control cannot have a dropdown button and the dropdown list needs to be a multi column grid.