Hello.
I am trying to modify data of a row when only one column is modify.
When I use
How can I get it?
Thanks
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
}
}