Hi,
I need to get currently changed cell.row.column(AnyIndex).text, any simple way to do this?
Thanks!
Thanks but I was looking for different and I found already:
e.Cell.Row.Cells(1).Text
That is returning text of specific column in same row as currently selected cell. For example value from some hidden column in grid with ID's.
GRID.ActiveCell.Value.ToString() will give you the value of the active cell.
Alternatively you can put in an event handler for UpdateCellEvent and get the value there to get real time notification of a change.
Peter