I have a column in Xceed datagrid where code is like:
<xcdg:Colum FieldName="CorpId" CellContentTemplate="{StaticResource nameConverter}"/>
Now FieldName is taking CorpId as value but I am using a converter to display the respective Name based on CorpId. When I am using SortDescription to perform sorting on this column, actually sorting is performed on FieldName i.e CorpId but I want to sort based on the name that i am getting from my converter.
Plz help me out.