In my model I have two related fields: integer which is stored in DB and a computed string field which is used for grid. The text displayed is based on the int field's value.
Now the problem with computed fields is they cannot be sorted when used in a grid. My workaround is:
- create a custom control, which contains a label
- add it to the grid and set it's DataContext to the integer field
The label inside my UserControl uses a IValueConverter to display the propert text and sorting is still possible, because grid uses the integer.
Unfortunately when I click the header although the grid's data does get sorted, the custom controls' text doesn't refresh.
What should I do?