This question is locked. New answers and comments are not allowed.
Hi,
I have the following code for getting a cell content:
I have the following code for getting a cell content:
private void Button_Click(object sender, RoutedEventArgs e)
{
Telerik.Windows.Controls.GridView.GridViewRow row = new Telerik.Windows.Controls.GridView.GridViewRow();
string myData;
myData = RadGridView1.Items[0].ToString(); } MyData is returning: "{ID=004211, Name=Jonh Test, Number=1}" What to do to access a specific value like "Name" ? Regards !