Hi
I'm trying to implement a "select all" functionality with checkboxes on the Header and record selector based on the example in the wpf sample browser. All seems well except the style for record selector removes the filter icon which removes all the filters with one click. How should i fix this?
Here's the style i'm using:
<Style TargetType="{x:Type igDP:RecordSelector}" BasedOn="{x:Null}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type igDP:RecordSelector}">
<CheckBox HorizontalAlignment="Center" VerticalAlignment="Center" IsChecked="{Binding Path=DataItem.IsChecked, Mode=TwoWay}" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
Hello,
I am just checking if you require any further assistance on the matter.