This question is locked. New answers and comments are not allowed.
I just upgraded to the newest release and I'm geting an exception in this code now. This code has been working fine with the previuous relases for months. e.Cell.DataContext is now null. Did I miss a breaking change?
private void Grid_CellEditEnded(object sender, GridViewCellEditEndedEventArgs e) {
MyObject myObj = e.Cell.DataContext as MyObject;
..
.
..
}
private void Grid_CellEditEnded(object sender, GridViewCellEditEndedEventArgs e) {
MyObject myObj = e.Cell.DataContext as MyObject;
..
.
..
}