I use custom RowStyle for RadGridView with my own format.
After upgrade to 2011 Q1 I receive NULL refernce exception in DefaultCellLocator class
in following method:
[SuppressMessage("Microsoft.Performance", "CA1822:MarkMembersAsStatic")]
internal GridViewCell FindCellInRow(GridViewRow row, int cellColumnIndex)
{
if (((row != null) && (cellColumnIndex >= 0)) && (row.CellsPresenter != null))
{
return (((GridViewCellsPanel) row.CellsPresenter.ItemsHost).CellFromIndex(cellColumnIndex) as GridViewCell);
}
return null;
}
This exception occurs when I select row.