This question is locked. New answers and comments are not allowed.
I have RadGridView and GridViewComboBoxColumn.
Items Source is a Dictionary<int, string>
Data Memder is a Dictionary Item.
Filter for that field is displayed, but the filter shown Dictionary Keys. How to make the filter displays the Values of a Dictionary.
<
telerik:RadGridView
>
<
telerik:RadGridView.Columns>
<
telerik:GridViewComboBoxColumn
IsFilterable="True"
DataMemberBinding="{Binding Path=[confirmedcode], Mode=TwoWay}"
ItemsSourceBinding="{Binding Path=ConfirmedPicklist, Source={StaticResource CurApp}}"
DisplayMemberPath="Value"
SelectedValueMemberPath="Key">
<
telerik:GridViewComboBoxColumn.FilteringControl
>
<
telerik:FilteringControl
/>
</
telerik:GridViewComboBoxColumn.FilteringControl
>
</
telerik:GridViewComboBoxColumn
>
</
telerik:RadGridView.Columns>
</
telerik:RadGridView
>
Items Source is a Dictionary<int, string>
Data Memder is a Dictionary Item.
Filter for that field is displayed, but the filter shown Dictionary Keys. How to make the filter displays the Values of a Dictionary.