This question is locked. New answers and comments are not allowed.
Hello,
I am trying implement Autocomplete box using RadComboxBox. Below is code. The drop down is not filtering even thought I set the property “IsFilteringEnabled”. Can you let me know if I am missing anything. Also, see the attached file to see what I am experiencing.
<telerikInput:RadComboBox x:Name="RadComboBox1" Margin="0 10 0 10" ItemsSource="{Binding AllAdvertisers, Mode=TwoWay}" SelectedValuePath="AdvertiserId" DisplayMemberPath="Name" CanAutocompleteSelectItems="False" SelectedItem="{Binding SelectedATSAdvertiser, Mode=TwoWay}" IsEditable="True" IsReadOnly="False" IsFilteringEnabled="True" OpenDropDownOnFocus="True" Text="{Binding AdvertiserAutoCompleteText, Mode=TwoWay}" telerik:TextSearch.TextPath="Name" VerticalAlignment="Center" Width="250" EmptyText="Select Advertiser" HorizontalAlignment="Left"> <telerik:RadComboBox.ItemsPanel> <ItemsPanelTemplate> <VirtualizingStackPanel /> </ItemsPanelTemplate> </telerik:RadComboBox.ItemsPanel></telerikInput:RadComboBox>