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

DoubleClick on RadGridView row to navigate to another page

6 Answers 251 Views
GridView
This is a migrated thread and some comments may be shown as answers.
VH
Top achievements
Rank 1
VH asked on 30 Mar 2010, 05:01 AM
Hi,

I would like to be able to double click on a RadGridView row to navigate to another page. Which event should I fire? I have created a a class for detecting double click, the problem is I use mouseLeftButtonDown event, so double click event is fired when I double click on the GridView rather than the selected row. Any suggesstions?

Cheers,

VH

6 Answers, 1 is accepted

Sort by
0
Accepted
Vlad
Telerik team
answered on 30 Mar 2010, 07:12 AM
Hi VH,

Please check this demo for more info:
http://demos.telerik.com/silverlight/#GridView/ClickEvents

Sincerely yours,
Vlad
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
VH
Top achievements
Rank 1
answered on 30 Mar 2010, 10:33 PM
O, right! Thank you very much, I should have checked that before post...

Cheers,

VH
0
Wayne Bradney
Top achievements
Rank 1
answered on 23 Jun 2010, 04:01 AM
I can't compile this demo code against the latest binaries. In the AddHandler call, I get:

Error 6 The best overloaded method match for 'System.Windows.UIElement.AddHandler(System.Windows.RoutedEvent, System.Delegate, bool)' has some invalid arguments ...View.xaml.cs 30 13 ....App
Error 7 Argument 1: cannot convert from 'Telerik.Windows.RoutedEvent' to 'System.Windows.RoutedEvent' ...View.xaml.cs 30 35 ....App
0
Vlad
Telerik team
answered on 23 Jun 2010, 06:50 AM
Hello,

 Can you post more info about the problem? You cannot compile our demos locally?

Regards,
Vlad
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Geoff Hardy
Top achievements
Rank 1
answered on 23 Jun 2010, 05:37 PM
I had a similar problem in my code. To fix it, I just needed the right using statements at the top of my code:

using Telerik.Windows; 
using Telerik.Windows.Controls.GridView; 
 

0
Wayne Bradney
Top achievements
Rank 1
answered on 24 Jun 2010, 03:14 AM
Seems I had a stray reference to an old version of the GridView
Tags
GridView
Asked by
VH
Top achievements
Rank 1
Answers by
Vlad
Telerik team
VH
Top achievements
Rank 1
Wayne Bradney
Top achievements
Rank 1
Geoff Hardy
Top achievements
Rank 1
Share this question
or