I use a DataSet->DataView->GridDataBoundGrid chain. Inside CurrentCellChanged event handler I try something like this:
GridDataBoundGrid grid = (GridDataBoundGrid sender;
int rowIdx = grid.CurrentCell.RowIndex;
int colIdx = grid.CurrentCell.ColIndex;
DataRow row = dataView[rowIdx - 1].Row;
string s = row[colIdx - 1].ToString();
I expected s to contain the new text, but it holds just "", ever (while inside the event handler). How to get the subject?
Grateful in advance, Alexey