This question is locked. New answers and comments are not allowed.
Hello,
I am trying to programatically set a RadComboBox ItemsSource to a RadDomainDataSource that is defined in App.xml. I am relatively new to Silverlight so I am assuming this approach is OK.
Here's the definition in XAML:
<telerik:RadComboBox Name="rcbValue" IsEditable="True" Width="150" HorizontalAlignment="Left" telerik:TextSearch.TextPath="Category1" SelectedValue="{Binding Value, Mode=TwoWay}" SelectedValuePath="Category1" ItemsSource="{Binding Source={StaticResource ddsCategories}, Path=DataView}" DisplayMemberPath="Category1" Loaded="cbmValue_Loaded" ></telerik:RadComboBox>Basically, all I need to change is ItemsSource, SelectedValuePath and DisplayMemberPath. I've tried a variety of things but with no luck. Any help will be appreciated!
Cheri