This question is locked. New answers and comments are not allowed.
Hello,
I am using the RAD ComboBox to display a list of CLR objects. When a user begins typing in this ComboBox, I want the results in the list to filter based on what is typed. I believe that I have followed the code showed in the demo here: http://demos.telerik.com/silverlight/#ComboBox/Configurator
When I click the combo box, my records are appearing in the drop down as I'm expecting. When I being typing, the records are changing, so I assume some filtering is occuring. However, the results in the list do not appear filtered based on what I am typing. Here is my code:
What am I doing wrong? Why is my filtering not behaving as expected?
Thank you!
I am using the RAD ComboBox to display a list of CLR objects. When a user begins typing in this ComboBox, I want the results in the list to filter based on what is typed. I believe that I have followed the code showed in the demo here: http://demos.telerik.com/silverlight/#ComboBox/Configurator
When I click the combo box, my records are appearing in the drop down as I'm expecting. When I being typing, the records are changing, so I assume some filtering is occuring. However, the results in the list do not appear filtered based on what I am typing. Here is my code:
<telerik:RadComboBox x:Name="myComboBox" Width="184" DisplayMemberPath="FullName" SelectedValuePath="FullName" ItemsSource="{Binding People}" telerik:TextSearch.TextPath="FullName" IsFilteringEnabled="True" CanAutocompleteSelectItems="True" CanKeyboardNavigationSelectItems="True" IsEditable="True" OpenDropDownOnFocus="True" TextSearchMode="Contains" EmptyText="(please select)" SelectionChanged="myComboBox_SelectionChanged"> <telerik:RadComboBox.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel /> </ItemsPanelTemplate> </telerik:RadComboBox.ItemsPanel></telerik:RadComboBox>What am I doing wrong? Why is my filtering not behaving as expected?
Thank you!