I have an Autocomplete control that is bound to an ObservableCollection of my view search result view models. However, when I update the collection (clear it and add each result) the control only shows the "No Results Found" message.
I'm not using any code behind for this, I have a Behavior that handles the TextChanged event which calls an ICommand on my view model to update the list of results. I've posted the code for my view below, if you need more context I can provide the Behavior or View Model code as well.
View
<telerikInput:RadAutoCompleteView Grid.Row="0" ItemsSource="{Binding RetailerSearchResults, Mode=TwoWay}">
<telerikInput:RadAutoCompleteView.Behaviors>
<sharedBehaviors:TelerikAutoCompleteTextChangedBehavior Command="{Binding RetailerSearchTextChangedCommand}" Timeout="1000" />
</telerikInput:RadAutoCompleteView.Behaviors>
<telerikInput:RadAutoCompleteView.SuggestionItemTemplate>
<DataTemplate x:DataType="{x:Type viewModels:RetailerListItemViewModel}">
<ViewCell>
<Label Text="{Binding DisplayName}"></Label>
</ViewCell>
</DataTemplate>
</telerikInput:RadAutoCompleteView.SuggestionItemTemplate>
</telerikInput:RadAutoCompleteView>