search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Bubble

Asked by Neil
10 years ago.

I am implementing the month calendar and have it working with the exception of the hover bubble.
I am getting both my custom bubble and the default bubble.
How do I disable the default bubble from appearing.

I am using MVC 4
below is the Razor page that is calling the calendar.

<h2>Schedule Month</h2>
@Html.DayPilotBubble("bubble", new DayPilotBubbleConfig());

@Html.DayPilotMonth("dpm", new DayPilotMonthConfig()
{
BackendUrl = Url.Content("~/Schedule/MonthBackend"),
ContextMenu = "menu",
EventBubble = "bubble",
//CssOnly = true,
CssClassPrefix = "calendar_silver_",
EventHeight = 25
})

Answer posted by Dan Letecky [DayPilot]
10 years ago.

You probably mean the ToolTip (based on HTML title attribute). You can disable it using ShowToolTip property:

http://doc.daypilot.org/month/event-bubble/

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.