I'm trying to create a custom editor using a comboBox. It correctly displays the combobox when I select the property, but I can't seem to get it display the collection. I'm binding it to a property on my viewmodel and stepping through the code, I know this collection is being loaded with data.
Is there a reason it wouldn't work?
<DataTemplate x:Key="RequestorEditor"> <telerik:RadComboBox SelectedValue="{Binding Value, Mode=TwoWay, FallbackValue=null}" MinWidth="100" ItemsSource="{Binding Requestors}" DisplayMemberPath="FullName" SelectedValuePath="UserID" /></DataTemplate>Is there a reason it wouldn't work?