This is a migrated thread and some comments may be shown as answers.

Gridview row selection using keyboard up/down keys

3 Answers 127 Views
GridView
This is a migrated thread and some comments may be shown as answers.
senthil
Top achievements
Rank 1
senthil asked on 16 Mar 2011, 06:06 AM
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;

3 Answers, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 16 Mar 2011, 08:15 AM
Hi,

Collections with identical items (same instances) are not supported.

Regards,
Vlad
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
senthil
Top achievements
Rank 1
answered on 16 Mar 2011, 11:24 AM
Hi,
 
Could you pls check my xaml, xaml.cs and run and check.

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 can't navigate the row selection using keyboard up and down arrows. Please check it.
0
GOPI S
Top achievements
Rank 1
answered on 21 Mar 2011, 12:17 PM
Hi ,
Me too facing the same problem ,when two identical records are there i cant able to select the another one ,what will the solution for that ,any solution
Tags
GridView
Asked by
senthil
Top achievements
Rank 1
Answers by
Vlad
Telerik team
senthil
Top achievements
Rank 1
GOPI S
Top achievements
Rank 1
Share this question
or