Hi,
I tried to use "search as you type" on my GridViewComboBoxColumn. But it doesn't work.
When I type something on the search bar doesn't found anything on grid.
<UserControl.Resources> <CollectionViewSource x:Key="DirectionsCollectionViewSource" x:Name="DirectionsCollectionViewSource" /> </UserControl.Resources>......
<telerik:GridViewComboBoxColumn UniqueName="Direction" Header="Direction" DataMemberBinding="{Binding Path=Direction, UpdateSourceTrigger=PropertyChanged}" SelectedValueMemberPath="Value" ItemsSource="{Binding Source={StaticResource DirectionsCollectionViewSource}}" DisplayMemberPath="Label"> </telerik:GridViewComboBoxColumn>
Collection View Source is populated with the following values:
List<SSCStringValueObject> directions = new List<SSCStringValueObject>(); directions.Add(new SSCStringValueObject("O", "Out"); directions.Add(new SSCStringValueObject("I", "In"); return directions;
Telerik version used: 2017.2.614.45
What am I missing? Can you provide me an example, please?
Thank you