Hi!
I have the default style for comboBoxes:
<Style TargetType="{x:Type ComboBox}">
<Setter Property="IsEditable" Value="True" />
</Style>
And the following ForeignKeyConfiguration for my column:
<xcdg:ForeignKeyConfiguration x:Key="MyForeignKeyConfiguration"
ItemsSource="{Binding MySource}"
DisplayMemberPath="Name" ValuePath="Id"/>
The combobox rendered doesn't show the name of selected item, but the class name instead.
If IsEditable property is set to false, the name is displayed normally.
Any thing that I have missed?
Thanks a lot!
Daniel