A part of a table shows the following datas:
[picture1.png]
The quick filter (Funnel Icon) doesn’t show all the values from the selectable items.
[picture2.png]
It seems well in the list, that the numbers are in ascending order, but more than one value which is in the table is missing from it (eg. ’-0,49’ or ’6,00’in the upper picture), and more than one value is duplicated (eg. ’-8,51’).
Informations and source code:
<Style x:Key="RightAlignedGridColumnStyle" TargetType="{x:Type telerik:GridViewDataColumn}">
<Setter Property="TextAlignment" Value="Right"/>
</Style>
<Style x:Key="PercentGridColumnStyle" TargetType="{x:Type telerik:GridViewDataColumn}"
BasedOn="{StaticResource ResourceKey=RightAlignedGridColumnStyle}">
<Setter Property="DataFormatString" Value="{}{0:N2}"/>
</Style>
<telerik:GridViewDataColumn Width="185" Header="Low pr % to Normal pr orig"
DataMemberBinding="{Binding LowPriceToEDLPOriginal}"
Style="{StaticResource ResourceKey=PercentGridColumnStyle}">
</telerik:GridViewDataColumn>
Is there any solution for our problem? Thank you for your answer!

<telerik:RadGridView.Columns> <telerik:GridViewDataColumn IsReadOnly="True" IsGroupable="True" Header="Element Path" DataMemberBinding="{Binding ElementPath}" Focusable="False" Width="Auto" TextAlignment="Left" IsEnabled="False"/> <telerik:GridViewDataColumn IsReadOnly="True" IsGroupable="True" Header="Category" DataMemberBinding="{Binding CategoryName}" Focusable="False" Width="Auto" TextAlignment="Left" IsEnabled="False" /> <telerik:GridViewDataColumn IsReadOnly="True" IsGroupable="False" Header="Name" DataMemberBinding="{Binding Name}" Width="Auto" Focusable="False" TextAlignment="Left" IsEnabled="False" /> <telerik:GridViewDataColumn IsReadOnly="True" IsGroupable="False" Header="Description" HeaderTextAlignment="Left" DataMemberBinding="{Binding Description}" Focusable="False" Width="200" TextAlignment="Left" IsEnabled="False" /> <telerik:GridViewDataColumn IsReadOnly="True" IsGroupable="True" Header="Type" DataMemberBinding="{Binding CannonicalType}" Focusable="False" TextAlignment="Left" Width="Auto" IsEnabled="False" /> <telerik:GridViewDataColumn Header="Value" IsGroupable="False" Width="180" DataMemberBinding="{Binding Value,Mode=TwoWay,ValidatesOnExceptions=True}" CellTemplateSelector="{StaticResource CellTemplate}" CellEditTemplateSelector="{StaticResource EditTemplateSelector}" SortingState="None" IsSortable="True" TextAlignment="Left" IsEnabled="True"> <telerik:GridViewDataColumn.CellStyle> <Style BasedOn="{StaticResource {x:Type tt:GridViewCell}}" TargetType="tt:GridViewCell"> <Setter Property="FontWeight" Value="Normal" /> <Style.Triggers> <DataTrigger Binding="{Binding Path=IsDefaultValueModified,Mode= TwoWay}" Value="true"> <Setter Property="FontWeight" Value="Bold" /> </DataTrigger> <DataTrigger Binding="{Binding Path=ParameterInEditMode, Mode=TwoWay}" Value="true"> <Setter Property="FontStyle" Value="Italic" /> </DataTrigger> <DataTrigger Binding="{Binding IsEnabled}" Value="true"> <Setter Property="IsEnabled" Value="true" /> <Setter Property="Focusable" Value="true" /> </DataTrigger> <DataTrigger Binding="{Binding IsEnabled}" Value="false"> <Setter Property="IsEnabled" Value="false" /> <Setter Property="Focusable" Value="false" /> </DataTrigger> </Style.Triggers> </Style> </telerik:GridViewDataColumn.CellStyle> </telerik:GridViewDataColumn> <telerik:GridViewDataColumn IsGroupable="False" IsReadOnly="True" Header="Resolved Value" DataMemberBinding="{Binding ResolvedValue}" TextAlignment="Left" Width="180" IsEnabled="False"/> </telerik:RadGridView.Columns> <telerik:RadGridView.GroupDescriptors> <telerik:ColumnGroupDescriptor> <telerik:ColumnGroupDescriptor.Column> <telerik:GridViewColumn Header="Element Path" GroupMemberPath="ElementPath" /> </telerik:ColumnGroupDescriptor.Column> </telerik:ColumnGroupDescriptor> </telerik:RadGridView.GroupDescriptors>