How can I read the the data from a clicked row?
I have a DataGrid with an ActiveCellChanged event and a reference DataGridRef, but I can't find a way to read the data (text) from the clicked row in the ActiveCellChanged event.
Hello Victor,
The ACC event exposes a New/OldActiveCell event arg properties as long as your event provides the GridActiveCellChanged parameter.
eg.
private void OnActiveCellChanged(GridActiveCellChangedEventArgs e) { var columnName = e.NewActiveCell.ColumnUniqueKey; var rowID = e.NewActiveCell.RowIndex; }