Click or drag to resize
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.
Inheritance Hierarchy
SystemObject
  Kettic.AspNet.ControlsGridColumn
    Kettic.AspNet.ControlsGridHyperLinkColumn

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public class GridHyperLinkColumn : GridColumn

The GridHyperLinkColumn type exposes the following members.

Constructors
  NameDescription
Public methodGridHyperLinkColumn
Top
Methods
  NameDescription
Public methodClone (Overrides GridColumnClone.)
Public methodGetCustomPropertyDataFields (Overrides GridColumnGetCustomPropertyDataFields(Object).)
Public methodGetDefaultGroupByExpression (Overrides GridColumnGetDefaultGroupByExpression.)
Public methodInitialize (Overrides GridColumnInitialize.)
Public methodInitializeCell (Overrides GridColumnInitializeCell(TableCell, Int32, GridItem).)
Public methodIsBoundToFieldName(String) (Overrides GridColumnIsBoundToFieldName(String).)
Public methodIsBoundToFieldName(String, String)
Public methodPrepareCell (Overrides GridColumnPrepareCell(TableCell, GridItem).)
Public methodSupportsFiltering (Overrides GridColumnSupportsFiltering.)
Top
Properties
  NameDescription
Public propertyAllowFiltering
Gets or sets whether the column data can be filtered. The default value is true.
Public propertyDataNavigateUrlFields
Gets or sets a string, representing a comma-separated enumeration of DataFields from the data source, which will form the url of the windwow/frame that the hyperlink will target.
Public propertyDataNavigateUrlFormatString
Gets or sets a string, specifying the FormatString of the DataNavigateURL. Essentially, the DataNavigateUrlFormatString property sets the formatting for the url string of the target window or frame.
Public propertyDataTextField
Gets or sets a string, representing the DataField name from the data source, which will be used to supply the text for the hyperlink in the column. This text can further be customized, by using the DataTextFormatString property.
Public propertyDataTextFormatString
Gets or sets a string, specifying the format string, which will be used to format the text of the hyperlink, rendered in the cells of the column.
Public propertyNavigateUrl
Gets or sets a string, specifying the url, to which to navigate, when a hyperlink within a column is pressed. This property will be honored only if the DataNavigateUrlFields are not set. If either DataNavigateUrlFields are set, they will override the NavigateUrl property.
Public propertyTarget

Sets or gets a string, specifying the window or frame at which to target content. The possible values are:

_blank - the target URL will open in a new window
_self - the target URL will open in the same frame as it was clicked
_parent - the target URL will open in the parent frameset
_top - the target URL will open in the full body of the window

Public propertyText
Gets or sets a string, specifying the text to be displayed by the hyperlinks in the column, when there is no DataTextField specified.
Top
See Also