Would like to able able to type and have combo box jump to letters typed. Below is my xaml that does not allow for this, as I type nothing happens in the combo box. Items source is an observable collection.
<Custom3:SfComboBox Grid.Row="2" Grid.Column="3" x:Name="cboTubularTypeFilter" ItemsSource="{x:Bind ViewModel.TubularTypeNames, Mode=OneWay}" Width="150"
HorizontalAlignment="Left" Margin="5" VerticalAlignment="Top" FontSize="14" SelectionChanged="cboTubularTypeFilter_SelectionChanged"
IsTextSearchEnabled="True" SelectedItem = "{x:Bind ViewModel.TubularTypeNameFilter, Mode=TwoWay}">
<Custom3:SfComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding TubularTypeName}" />
</StackPanel>
</DataTemplate>
</Custom3:SfComboBox.ItemTemplate>
</Custom3:SfComboBox>