Does the ultrawingrid have this feature built in ? I reffer to the possibility to show a button at the end of each record row, that would allow to delete that row?
If not, what would be the simplest way to implement it ?
Thanks!
I don't know if there is a built in feature for that, but you could do it very simply:
1. Add an unbound column with style = button.
2. Handle the ClickCellButton event:
if (e.Cell.Column.Key == "unboundColumnKey")
e.Cell.Row.Delete();
Can this button be customized ? e.g put a image on it ?
Yes. Change the column.CellButtonAppearance.Image.