DataContext="{Binding IsTeamMate, Converter={StaticResource BooleanToCheckMark}}"<tk:GridViewDataColumn DataContext="{Binding IsTeamMate, Converter={StaticResource BooleanToCheckMark}}"
Header="Already played"
IsGroupable="False" ShowFieldFilters="False" UniqueName="IsTeamMate" Width="30"> <tk:GridViewDataColumn.CellTemplate> <DataTemplate> <TextBlock Text="{Binding IsTeamMate, Converter={StaticResource BooleanToCheckMark}}" /> </DataTemplate> </tk:GridViewDataColumn.CellTemplate></tk:GridViewDataColumn>The Code is very minimalistic
<Window x:Class="RadComboBoxSample.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
Title="MainWindow" Height="220" Width="220">
<Window.Resources>
<Style x:Key="RadComboBoxContentUserControlStyle" TargetType="telerik:RadComboBox">
<Setter Property="Margin" Value="10" />
<Setter Property="Padding" Value="10" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="IsReadOnly" Value="True" />
<Setter Property="IsEditable" Value="True" />
<Setter Property="IsFilteringEnabled" Value="True" />
<Setter Property="CanAutocompleteSelectItems" Value="True" />
<Setter Property="CanKeyboardNavigationSelectItems" Value="True" />
<Setter Property="OpenDropDownOnFocus" Value="True" />
<Setter Property="TextSearchMode" Value="Contains" />
<Setter Property="ClearSelectionButtonVisibility" Value="Visible" />
<Setter Property="ClearSelectionButtonContent" Value="Clear" />
<Setter Property="EmptyText" Value="Please select" />
</Style>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" MinWidth="200" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<telerik:RadComboBox Grid.Column="0" Grid.Row="0" Style="{StaticResource RadComboBoxContentUserControlStyle}">
<telerik:RadComboBoxItem Content="14 - Car" />
<telerik:RadComboBoxItem Content="15 - Airplane" />
<telerik:RadComboBoxItem Content="16 - Boat" />
<telerik:RadComboBoxItem Content="17 - Bike" />
</telerik:RadComboBox>
</Grid>
</Window>
'Add the new object to the collection...mcolStudents.Add(moStudent)'Locate the record in the grid...With gvStudents For Each item As StudentView In .Items If item.StudentId = moStudent.StudentId Then .SelectedItem = item .ScrollIntoView(item) Exit For End If NextEnd With