This question is locked. New answers and comments are not allowed.
I am trying to just select the row in the grid view without setting focus to a column. In version "2010.1.422.1030" this was not a problem. After installing version "2010.2.714.1040" when a row was selected it set focus to the column that was clicked. I'm looking to select the row without it setting focus to a column. The girdview is set to read only. See code below.
Any help would be appreciated,
Mark
<UserControl x:Class="RankSelection.RankSelectionView" xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" xmlns:CustomCommands="clr-namespace:Common.Commands;assembly=Common" Height="300"> <Grid x:Name="LayoutRoot_Copy" Margin="10"> <telerik:RadGridView ItemsSource="{Binding SourceRank}" SelectedItem="{Binding Path=SelectedRank, Mode=TwoWay}" RowIndicatorVisibility="Collapsed" AutoGenerateColumns="False" CanUserInsertRows="False" IsReadOnly="True" CanUserFreezeColumns="False"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn Header="Rank Description" DataMemberBinding="{Binding Description}" Width="275"/> <telerik:GridViewDataColumn Header="Last Modified" DataMemberBinding="{Binding ModifiedDate}" DataFormatString="{}{0:d}" Width="125"/> </telerik:RadGridView.Columns> </telerik:RadGridView> </Grid> </UserControl> Any help would be appreciated,
Mark