i was hoping you guys could help me out. I am binding to my raddatagrid through a data model from a sql query through a wcf service. I need to get the value of a specific cell when a single or multiple rows are selected on button press.
var physicalPoint = e.GetPosition(sender as RadDataGrid);
var cell = (sender as RadDataGrid).HitTestService.CellInfoFromPoint(physicalPoint);
if (cell != null)
{
var dialog = new MessageDialog(string.Format(cell.Column.Header.ToString()), "COLUMN HEADER: " );
await dialog.ShowAsync();
}
}
Regards,
Stefan Nenchev
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items