This is a migrated thread and some comments may be shown as answers.

Get data on other Cell when use GridViewCellEditEndedEventArgs

0 Answers 64 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Hola
Top achievements
Rank 1
Hola asked on 11 Nov 2011, 12:42 PM
Hello.

I am trying to modify data of a row when only one column is modify.

When I use RadGridViewApplication_CellEditEnded I need to kwow the value of the other cell in se same row ..

How can I get it?

Thanks

private void RadGridViewApplication_CellEditEnded(object sender, Telerik.Windows.Controls.GridViewCellEditEndedEventArgs e)
{
    //Check if data has chenged
   
     
    if (e.NewData.ToString() != e.OldData.ToString())
    {                 
         //Modify data of the complete cell
         //Need values of the current cell   

    }
     
}

No answers yet. Maybe you can help?

Tags
GridView
Asked by
Hola
Top achievements
Rank 1
Share this question
or