Gets or sets the field from a data source to bind to the URL of 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#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[DefaultValueAttribute("")]
[JsonAttribute(false)]
[TypeConverterAttribute(typeof(DataSourceViewSchemaConverter))]
[ObsoleteAttribute("Please use DataNavigateUrlFields property instead.")]
[BrowsableAttribute(false)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public string DataNavigateUrlField { get; set; }
Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
<DefaultValueAttribute("")> _
<JsonAttribute(False)> _
<TypeConverterAttribute(GetType(DataSourceViewSchemaConverter))> _
<ObsoleteAttribute("Please use DataNavigateUrlFields property instead.")> _
<BrowsableAttribute(False)> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Property DataNavigateUrlField As String
	Get
	Set

Remarks

The DataNavigateUrlField and NavigateUrl properties cannot both be set at the same time. If both properties are set, the DataNavigateUrlField property takes precedence

Remarks

This property is obsoleted. Please use DataNavigateUrlFields property instead.

See Also