This question is locked. New answers and comments are not allowed.
I have a grid that includes a column bound to a GUID. I'm using a Template to display that GUID as the corresponding employee's name rather than ID; my question is whether it's possible to group and filter by the display values rather than actual values.
This is the column setup I have tried:
Right now it's simply displaying the grouped rows as blank.
Here is the Template I'm using:
The referenced Converter (CellConvert) is used to match the GUID to the existing set of employees.
Thank you in advance.
This is the column setup I have tried:
<tk:GridViewDataColumn DataMemberBinding="{Binding TaskOwner}" CellTemplate="{StaticResource tPlayer}" GroupHeaderTemplate="{StaticResource tPlayer}" Header="Owner" />Here is the Template I'm using:
<DataTemplate x:Key="tPlayer"><Grid><TextBlock Text="{Binding TaskOwner, Converter={StaticResource CellConvert}}" /></Grid>
</DataTemplate>The referenced Converter (CellConvert) is used to match the GUID to the existing set of employees.
Thank you in advance.