This question is locked. New answers and comments are not allowed.
Everything is working correct except the TextSearch.TextPath who doesn't seem to work at all,
if I write something it doesn't jump between the items in my ComboBox. What's wrong?
<telerik:GridViewDataColumn DataMemberBinding="{Binding tGRSUnit.Name}" IsFilterable="True" Header="GRS Unit"> <telerik:GridViewColumn.CellTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding tGRSUnit.Name}" /> <TextBlock Text=" / " /> <TextBlock Text="{Binding tGRSUnit.Code}" /> </StackPanel> </DataTemplate> </telerik:GridViewColumn.CellTemplate> <telerik:GridViewColumn.CellEditTemplate> <DataTemplate> <telerik:RadComboBox ItemsSource="{Binding Source={StaticResource ViewModel}, Path=tGrsUnitList}" SelectedItem="{Binding tGRSUnit, Mode=TwoWay}" IsDropDownOpen="True" telerik:TextSearch.TextPath="Name"> <telerik:RadComboBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding Name}" /> <TextBlock Text=" / " /> <TextBlock Text="{Binding Code}" /> </StackPanel> </DataTemplate> </telerik:RadComboBox.ItemTemplate> </telerik:RadComboBox> </DataTemplate> </telerik:GridViewColumn.CellEditTemplate> </telerik:GridViewDataColumn>