This question is locked. New answers and comments are not allowed.
I'm using the grid view loaded by a domain data source. I have several columns bound to a boolean property but I'm templating out the column to display a friendly "yes/no" instead of a checkbox. What I'm looking to see if it is possible is use the distinct filters to programmatically show "yes/no" and have them behave as a "true/false." I would like to make it so the distinct filters do not pick up any of the loaded data either (since more often than not, it does not load all distinct values anyway).
Column example:
Is this possible to do?
Column example:
<telerik:GridViewDataColumn ShowFieldFilters="False" DataMemberBinding="{Binding IsEnabled}">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding IsEnabled, Converter={StaticResource BooleanToStringConverter}}" />
</StackPanel>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
Is this possible to do?
