RadGrid for ASP.NET

RadGrid Send comments on this topic.
GridHyperLinkColumn Class
See Also  Members  
Telerik.WebControls Namespace : GridHyperLinkColumn Class


Each row in a Hyperlink column will contain a predefined hyperlink. This link is not the same for the whole column and can be defined for each row individually.

Object Model


 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public Class GridHyperLinkColumn 
   Inherits GridColumn
Visual Basic (Usage)Copy Code
Dim instance As GridHyperLinkColumn
C# 
public class GridHyperLinkColumn : GridColumn 

Remarks

The content of the column can be bound to a field in a data source or to a static text. You can customize the look of the links by using CSS classes.

You can set multiple fields to a GridHyperlinkColumn through its DataNavigateUrlFields property. These fields can later be used when setting the DataNavigateUrlFormatString property and be part of a query string:

						
            <rad:GridHyperLinkColumn
DataNavigateUrlFields= "ProductID,OrderID"
DataNavigateUrlFormatString= "~/Details.aspx?ProductID={0}&OrderID={1}">
</rad:GridHyperLinkColumn>

Inheritance Hierarchy

System.Object
   Telerik.WebControls.GridColumn
      Telerik.WebControls.GridHyperLinkColumn

Requirements

Namespace: Telerik.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: RadGrid (in RadGrid.dll)

See Also