Hello Dave,
It looks like you are selecting a record cause of the record activation. If you handle your recordActivating event and place this
e.Cancel =
true;
it should work as you want it to.
Hope this helps.
Sincerely,
Petar Monov,
DS Engineer,
Infragistics Bulgaria
Hi Dave,
You can use a style for the DataRecordCellArea to set the colouring for different states of records e.g:
<Style TargetType="{x:Type igDP:DataRecordCellArea}" >
<Setter Property="BorderActiveBrush" Value="White" />
<Setter Property="BorderSelectedBrush" Value="White" />
<Setter Property="BackgroundActive" Value="White" />
<Setter Property="BackgroundSelected" Value="White" />
</Style>
Hope this is what you needed.
Regards Petar.