Gets or sets the names of the fields from the data source used to construct the URLs for the hyperlinks in the C1HyperLinkField.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[DefaultValueAttribute(null)]
[JsonAttribute(true)]
[TypeConverterAttribute(typeof(StringArrayConverter))]
public virtual string[] DataNavigateUrlFields { get; set; }
Visual Basic
<DefaultValueAttribute(Nothing)> _
<JsonAttribute(True)> _
<TypeConverterAttribute(GetType(StringArrayConverter))> _
Public Overridable Property DataNavigateUrlFields As String()
	Get
	Set

Field Value

An array containing the names of the fields from the data source used to construct the URLs for the hyperlinks in the C1HyperLinkField. The default is an empty array, indicating that DataNavigateUrlFields is not set.

Remarks

If the DataNavigateUrlFields and the NavigateUrl properties are both set, the DataNavigateUrlFields property takes precedence.

See Also