When I select a row in a RadGridView (as shown below)
private void gridviewServiceTraceWatchList_SelectionChanged(object sender, SelectionChangeEventArgs e)
{
txtBillTo.Text = e.AddedItems[0].ToString();
}
I get:
“ServiceTrace.WPFApplication.CIPService.ServiceTraceWatchListData”
I’ve tried everything I know and looked and nothing works.
Can anyone tell me what I’m missing? It has to be simple and I'm overthinking it. I just want to get a single field item from a row of data.
Thanks in advance.
J