Hi allI am using ultraWinGrid 8.2I set column likethis.ctlUltraGrid1.DisplayLayout.Bands[0].Columns[1].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.EditButton;an it works, on every cell in this column I have a little button.But how can I now set the event to this button ???I have tried the following, but it did not work: Infragistics.Win.EditorWithText local_Editor = (Infragistics.Win.EditorWithText)this.ctlUltraGrid1.DisplayLayout.Bands[0].Columns[1].Editor; local_Editor.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(JustTest);Thanks for any comment .Best regardsFrank Uray
Hi.
Mike, what is the way to handle the ClickCellButton event of the grid?
Thanks.
Hi MikeThanks, that was it :-)
Best regardsFrank
Hi Frank,
The EditButton Style is built-in to the grid and is not provided by an editor. So EditButton and EditorButton are not the same thing. What you need to do is handle the ClickCellButton event of the grid.