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

ASPxSchedulerOptionsToolTips.SelectionToolTipUrl Property

Gets or sets the location of the custom tooltip form shown when the mouse cursor is positioned above selected time cells.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v19.1.dll

Declaration

[DefaultValue("")]
public string SelectionToolTipUrl { get; set; }

Property Value

Type Default Description
String String.Empty

A string, representing the URI of the custom form.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to SelectionToolTipUrl
ASP.NET Controls and MVC Extensions ASPxScheduler
.OptionsToolTips.SelectionToolTipUrl
MVCxScheduler
.OptionsToolTips.SelectionToolTipUrl
SchedulerSettings
.OptionsToolTips.SelectionToolTipUrl
ASP.NET Bootstrap Controls BootstrapScheduler
.OptionsToolTips.SelectionToolTipUrl

Remarks

Use the SelectionToolTipUrl property when customizing a tooltip that appears when a mouse cursor hovers over a selected area in the scheduler.

The default tooltip form is located at the path ~/DevExpress/ASPxSchedulerForms/SelectionToolTip.ascx in the project. You can create your own web user control (.acx) which implements custom logic, and specify its location via the SelectionToolTipUrl property. Then, this control will appear as a selection tooltip.

See Also