protected void RadGrid1_UpdateCommand(object source, GridCommandEventArgs e) |
{ |
GridEditableItem I = e.Item as GridEditableItem; |
DataTable s = RadGrid1.DataSource as DataTable; |
DataRow[] R = s.Select("ID = " + I.OwnerTableView.DataKeyValues[I.ItemIndex]["ID"].ToString()); |
Hashtable newvalues = new Hashtable(); |
I.OwnerTableView.ExtractValuesFromItem(newvalues, I); |
} |
Now when I'm Using DataKeyValue Method Its Return the old Values not the new values which is add by the user
So how can I get the New Value .
Note: I'm using Inplace Edit in my Grid.