When I'm using a GridViewComboBoxColumn after a user selects a value it shows the selected value (an integer ID field) instead of the displaymemberpath. Here's my XAML for that column:
Any ideas on how to get the column to display the text of my combobox instead of the selected value?
<telerik:GridViewComboBoxColumn Header="Schedule Type" DataMemberBinding="{Binding BookingTypeID}" SelectedValueMemberPath="BookingTypeID" DisplayMemberPath="BTName" ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type u:NewSchedules}, AncestorLevel=1},Path=BookingTypes}" /> |
Any ideas on how to get the column to display the text of my combobox instead of the selected value?