Hi,
it's correct that if I am in edit mode in a Cell, that the SelectionitemHolderCount is 0?
I need the selection count is not 0.
It's possible?
In this case, you can handle the EditModeStarting event and select the cell before entering edit mode:
void xamDataGrid1_EditModeStarting(object sender, Infragistics.Windows.DataPresenter.Events.EditModeStartingEventArgs e)
{
e.Cell.IsSelected = true;
}