or
I have a radcombobox which is TextSearchEnabled and Editable. The issue is whenever there is a textchanged it automatically selects the first item that is matched and that actually filters out the other dropdown which i wanted to restrict it.
Is there anyway i can restrict this behavior and only update the selected item on lost focus
<telerik:RadComboBox x:Name="ComboBox"
ItemsSource="{Binding Users}"
SelectAllTextEvent="GotFocus"
IsTextSearchEnabled="True"
IsEditable="True"
telerik:TextSearch.TextPath="FullName"
IsFilteringEnabled="True"
SelectedItem="{Binding SelectedUser}"
TextSearchMode="Contains"
MinWidth="80"
DisplayMemberPath="FullName"/>
<Style x:Key="RadComboBoxStyle" TargetType="telerik:RadComboBox"> <Setter Property="Template" Value="{StaticResource NonEditableComboBox}"/> <Setter Property="EditableTemplate" Value="{StaticResource EditableComboBox}"/> <Setter Property="NonEditableTemplate" Value="{StaticResource NonEditableComboBox}"/> <Setter Property="HorizontalContentAlignment" Value="Stretch"/> <Setter Property="VerticalContentAlignment" Value="Center"/> <Setter Property="MinHeight" Value="22"/> <Setter Property="Padding" Value="4,0,20,0"/> <Setter Property="Background" Value="{StaticResource MarkerBrush}"/> <Setter Property="BorderThickness" Value="1"/> <Setter Property="UseLayoutRounding" Value="True"/> <Setter Property="telerik:AnimationManager.AnimationSelector"> <Setter.Value> <telerik:AnimationSelector> <telerik:AnimationGroup AnimationName="Expand"> <telerik:SlideAnimation Direction="In" SlideMode="Top" TargetElementName="PopupRoot"/> </telerik:AnimationGroup> <telerik:AnimationGroup AnimationName="Collapse"> <telerik:SlideAnimation Direction="Out" SlideMode="Top" TargetElementName="PopupRoot"/> </telerik:AnimationGroup> </telerik:AnimationSelector> </Setter.Value> </Setter> <Setter Property="FontFamily" Value="Segoe UI"/> <Setter Property="FontSize" Value="12"/> <Setter Property="BorderBrush" Value="{StaticResource MainBrush}"/> <Setter Property="Foreground" Value="{StaticResource BasicBrush}"/> <Setter Property="ItemContainerStyle" Value="{StaticResource RadComboBoxItemStyle}"/></Style>public class Strand : BaseObject { private long stranNo; public long StrandNo { get { return this.stranNo; } set { this.stranNo = value; this.OnPropertyChanged("StrandNo"); } } private string strandName; public string StrandName { get { return this.strandName; } set { strandName = value; this.OnPropertyChanged("StrandName"); } } private List<GridData> gridData; public List<GridData> GridData { get { return gridData; } set { gridData = value; this.OnPropertyChanged("GridData"); } } private bool isSelected; public bool IsSelected { get { return isSelected; } set { isSelected = value; this.OnPropertyChanged("IsSelected"); } } }<Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <ItemsControl ItemsSource="{Binding Strands}" Grid.Row="0"> <ItemsControl.ItemTemplate> <DataTemplate> <RadioButton Content="{Binding StrandName}" Margin="5" IsChecked="{Binding IsSelected}" GroupName="Strands"/> </DataTemplate> </ItemsControl.ItemTemplate> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal" /> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> </ItemsControl> <Button Content="Rebind" Margin="5" Grid.Row="1" MaxWidth="80" Click="RebindButton_Click"/> <GroupBox Header="Grid" Margin="5" Grid.Row="2"> <telerik:RadGridView x:Name="Grid" Margin="5" IsFilteringAllowed="True" IsReadOnly="True" CanUserFreezeColumns="True" CanUserReorderColumns="False" CanUserResizeColumns="True" RowIndicatorVisibility="Collapsed" AutoGenerateColumns="False" ScrollViewer.CanContentScroll="True" ScrollViewer.VerticalScrollBarVisibility="Visible" ItemsSource="{Binding SelectedStrand.GridData}"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name}" HeaderTextAlignment="Center" Width="Auto" /> <telerik:GridViewDataColumn Header="Value" DataMemberBinding="{Binding Value}" HeaderTextAlignment="Center" TextAlignment="Left" Width="Auto" /> <telerik:GridViewDataColumn Header="Gauge" HeaderTextAlignment="Center" Width="*" > <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <telerik:RadHorizontalLinearGauge Margin="5" Height="15"> <telerik:HorizontalLinearScale Min="{Binding MinGaugeValue, Source={StaticResource Model}}" Max="{Binding MaxGaugeValue, Source={StaticResource Model}}" LabelFormat="{}{0}" LabelLocation="OverCenter" FontSize="8" FontFamily="Comic Sans MS" FontStyle="Normal" MajorTickLocation="OverOutside" MiddleTickLocation="OverOutside" MinorTickLocation="OverOutside" RangeLocation="OverCenter" MajorTickRelativeHeight="0.2" MiddleTickRelativeHeight="0.1" MinorTickRelativeHeight="0.05" MiddleTicks="1" RelativeHeight="1" RelativeWidth="1" RelativeX="0" RelativeY="0.5" Foreground="Black" Ranges="{Binding VariableRanges, Converter={StaticResource variableRangeToTelerikRanges}}"> <telerik:LinearScale.Indicators> <telerik:Marker telerik:ScaleObject.Location="Inside" telerik:ScaleObject.RelativeWidth="0.04*" telerik:ScaleObject.RelativeHeight="0.5*" Value="{Binding Value}"/> </telerik:LinearScale.Indicators> </telerik:HorizontalLinearScale> </telerik:RadHorizontalLinearGauge> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn> </telerik:RadGridView.Columns> </telerik:RadGridView> </GroupBox> </Grid><Style TargetType="telerik:RadDatePicker"> <Setter Property="telerikControls:StyleManager.Theme" Value="Windows8" /> <Setter Property="MinHeight" Value="20" /> <Setter Property="Height" Value="20" /> <Setter Property="FontFamily" Value="{StaticResource MyRegularFont}" /> <Setter Property="FontSize" Value="{StaticResource NormalFontSize}" /> </Style>