I've attached a sample project that contains the issue at hand. When clicking on the dropdown, I'm expecting that a messagebox should pop up. Instead no event is firing. Please advise.
Hi Mike,Thanks for the reply. I decided that the dropdown window will be sufficient. What's weird is I added a valuelist to a column for each of the rows but I'm still not seeing anything happen when the dropdown button is clicked. I'm pretty sure I've seen this work in the past. See attached.
Hi,
You are using a DropDownEditorButton. The way this button works is that you assign it a Control and when the user clicks it, the control will display on a DropDown window.
If you want a button that you can respond to a click event, then you should use an EditorButton instead of an EditorDropDownButton. And in that case, you would handle the EditorButtonClick event on the UltraTextEditor control. You should not handle an event on the button itself.