How to add hyperlink handler handler so that I may redirect to any page on the internet? The hyperlinks are in the RadGridView. The value of link, like www.google.com, are coming from database. I'm using winform telerik.
Asked
Active
Viewed 168 times
1 Answers
1
You must register to the HyperlinkOpening
event of the RadGridView
. And you must also make the column holding the hyperlink(s) a column of type GridViewHyperlinkColumn
.
Once you have the column created you can register as such:
radGridView.HyperlinkOpening += radGridView_HyperlinkOpening;
private void radGridView_HyperlinkOpening(object sender, HyperlinkOpeningEventArgs e)
{
Process.Start("www.google.com");
}

jaredbaszler
- 3,941
- 2
- 32
- 40
-
I don't have the authority to up vote. Anyone with less than 15 reputation are not allow to up vote. – Ali Hassan Jun 14 '17 at 16:52
-
Sorry but it's a developers community no one should make reputation by saying to vote him/ her. – Ali Hassan Jun 20 '17 at 05:17
-
Got it. Thank You. :) – Ali Hassan Jun 21 '17 at 04:42