This question is locked. New answers and comments are not allowed.
I've used this link to bind my Enum to my RadComboBox but when I browse thru the items, the combobox does not select anything, its always empty. I've check my ViewModel and it does make a Get to grab the value and send it to the converter. And if I change the selected item, it will update the ViewModel with the new selection and the ComboBox will also display the correct value. Again, if I navigate away and back to this item, the RadComboBox will be empty. Here's my RadCombobox XAML:
Any clues?
thanks
<telerik:RadComboBox HorizontalAlignment="Left" Height="25" MinWidth="75" VerticalAlignment="Top" ItemsSource="{Binding Source={StaticResource QueryDocumentsEnumerationDS}, Path=Values, Mode=OneWay}" DisplayMemberPath="" SelectedValue="{Binding DocumentOnly, Mode=TwoWay, Converter={StaticResource EnumConverter}}" Margin="0,0,8,0" />Any clues?
thanks