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
75
UltraGrid with column using control with ButtonsRight, wich event for button click
posted

Hi,

I want to have a column with text and a button that we can click to have a popup to modify some option relative to the cell content.

I added the button with the following


UltraTextEditor uteControl = new UltraTextEditor();

EditorButton editorButton = new Infragistics.Win.UltraWinEditors.EditorButton();

uteControl.ButtonsRight.Add(editorButton1);

editorButton.Text = "...";

UltraGridColumn col = GetColumn(grid, "ColumnName");

col.EditorControl = uteControl;

 

But now, no event is trigged. I trie all event from the grid, the button, and the UltraTextEditor.

The button don't even get in pushed state when clicked

Is there a way for me to achieved that?

 

Thanks

Parents Reply Children
No Data