This question is locked. New answers and comments are not allowed.
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
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
0
Accepted
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.
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
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
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
Hello,
Vlad
the Telerik team
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