This question is locked. New answers and comments are not allowed.
I'm binding a List<string> to a DataColumn via a ValueConverter, which returns a string:
<grid:GridViewDataColumn Header="Genres" DataMemberBinding="{Binding Genres, Converter={StaticResource ListConverter}}" />Now, no filter icon is shown. I tried to set a DataType, but got a runtime error.
Reading the threads here, I understand the filter works with the underlying data type. This would be a List<>.
Is this correct? Do I need to implement a comparable List<> ?
I don't see how this would help, because I would test two List<> (IComparable and IEquatable).
How would work a Contains-Filter?
What would be the easiest way? I need only the default filter for a string.
Thanks
Eric