Skip to main content
A newer version of this page is available. .
Tab

CalendarPickerViewCellInitializeEventArgs.NavigateUrl Property

Gets or sets a URL that defines the navigation location for the cell hyperlink.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public string NavigateUrl { get; set; }

Property Value

Type Description
String

A String value that is a URL to where the client web browser will navigate when the cell’s text is clicked.

Remarks

If the NavigateUrl property is assigned, the cell’s display text (which can be accessed via the CalendarPickerViewCellInitializeEventArgs.DisplayText property) serves as a hyperlink. Use the NavigateUrl property to specify a URL to which the client web browser navigates whenever the cell’s link is clicked. You can target the specified URL’s contents by using the CalendarPickerViewCellInitializeEventArgs.NavigateUrlTarget property.

The NavigateUrl property is not in effect if the rendered cell’s content is customized using the CalendarPickerViewCellCreatedEventArgs.Controls property.

See Also