ASPxSchedulerOptionsToolTips.AppointmentToolTipMode Property
In This Article
Specifies whether the appointment tooltip is displayed as a button or as a hint.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v24.2.dll
NuGet Package: DevExpress.Web.Scheduler
#Declaration
[DefaultValue(AppointmentToolTipMode.Auto)]
public AppointmentToolTipMode AppointmentToolTipMode { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Appointment |
Auto | One of the Appointment |
Available values:
Name | Description |
---|---|
Button | A tooltip is displayed as a button. |
Hint | A tooltip is displayed as a hint. |
Info |
A tooltip is displayed as an info sheet at the bottom of the screen. |
Auto | A tooltip mode is automatically defined depending on the user device’s platform. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Appointment |
---|---|
ASPx |
|
#Remarks
#Concept
#Online Demos
#Example
Web Forms approach:
<dx:ASPxScheduler ID="ASPxScheduler1" runat="server" Width="100%" ClientInstanceName="scheduler">
<OptionsToolTips AppointmentToolTipMode="InfoSheet" />
...
</dx:ASPxScheduler>
MVC approach:
var scheduler = Html.DevExpress().Scheduler(
settings => {
settings.Name = "scheduler";
settings.OptionsToolTips.AppointmentToolTipMode = AppointmentToolTipMode.InfoSheet;
...
}
@scheduler.Bind(Model.Appointments, Model.Resources).GetHtml()
See Also