Hi,
I have a issue of Silver light rad Gridview row selection using keyboard Up/Down arrow while the row having duplicate record.
In the attachment I have a records of test,test1,test2,test3. While the selection is on duplicate records I can't navigate through using key board up and down arrow. Is this a telerik grid bug or any property need to be set? Please help me out this problem to use it in my project.
My XAML Page:
<Grid x:Name="LayoutRoot" Background="White">
<telerikGrid:RadGridView x:Name="Sample">
</telerikGrid:RadGridView>
</Grid>
My XAML.CS
List<string> str = new List<string>();
str.Add("test");
str.Add("test");
str.Add("test2");
str.Add("test3");
str.Add("test4");
str.Add("test5");
str.Add("test6");
Sample.ItemsSource = str;
I have a issue of Silver light rad Gridview row selection using keyboard Up/Down arrow while the row having duplicate record.
In the attachment I have a records of test,test1,test2,test3. While the selection is on duplicate records I can't navigate through using key board up and down arrow. Is this a telerik grid bug or any property need to be set? Please help me out this problem to use it in my project.
My XAML Page:
<Grid x:Name="LayoutRoot" Background="White">
<telerikGrid:RadGridView x:Name="Sample">
</telerikGrid:RadGridView>
</Grid>
My XAML.CS
List<string> str = new List<string>();
str.Add("test");
str.Add("test");
str.Add("test2");
str.Add("test3");
str.Add("test4");
str.Add("test5");
str.Add("test6");
Sample.ItemsSource = str;