Hi Alex,
My grid settings is
Selection Type is Extended
CellClickAction is SelectRecord
I am using Ctrl + click to Select and Deselect a record. But i can't unselect my last row. How to deselect
that last row? is there anyway to set MinSelectRows = 0.
???
Regards,
Ramesh.P
I have a similar issue. Did this issue get resolved by placing the style trigger or should anything else be done too. I have put in my post here, http://ko.infragistics.com/community/forums/t/83689.aspx
I have put in the XAML too, please respond.
Thanks,
Ravi
I want the same result but my grid has a Theme="Office2k7Black" how do i achieve it
Yes Alex.
Exactly what i want.
thanks
Ramesh,
I can see this. Then you can try the following style for the DataRecordCellArea:
<Style TargetType="{x:Type igDP:DataRecordCellArea}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=IsSelected}" Value="False">
<Setter Property="BackgroundActive" Value="Transparent"/>
<Setter Property="BorderActiveBrush" Value="Transparent"/>
</DataTrigger>
</Style.Triggers>
</Style>
Yes Alex,
Your sample solution working well. I can see Selected count 0 when i Ctrl + click last record.
But unfortunately i couldn't remve the background color of the last one.