This question is locked. New answers and comments are not allowed.
I have defined the following in my grid:
<telerikGrid:GridViewDataColumn HeaderText="Frequency" DataMemberBinding="{Binding FrequencyID, Converter={StaticResource FrequencyConverter}}">
The purpose of the FrequencyConverter is to take a FrequencyID and turn it into a string value (simple key, value type lookup).
I was expecting that the result of this would be that the when I drag the frequency column to the group header it would show the 'converted' values. As it is I am seeing the value of the FrequencyID.
I don't have a particularly good way to debug this, however, I did put a breakpoint in my IValueConverter and noticed that the code is being executed.
Any thoughts? Should I simply be taking a different approach?
