All Questions

Using div in bubble

Answered: It looks like your styles use position: absolute. This causes the bubble HTML content to be taken out of the page flow - it doesn't extend the bubble div height. Try using position: relative instead.

Is DayPilot right for this job?

Answered: There are three views/controls that will let you display one cell per day: 1. Navigator (a small monthly calendar that usually serves as a date picker) http://doc.daypilot.org/navigator/ 2. Monthly e...

External Drag and Drop

Hello, when I set below setting DayPilotScheduler1.ViewType = DayPilot.Web.Ui.Enums.Scheduler.ViewTypeEnum.Days and Drag even over daypilot scheduler giving "TypeError: this.rows[e.part.dayIndex] is ...

Changing start date of event

Answered: Changes of the key properties (id, start, end, resource, text) doesn't have an immediate effect because it would cause problems if you modified events that are already visible in the calendar/schedul...

Show html bubble on event click in Scheduler

Answered: Using DayPilot Pro 7.7.787 and later (see the sandbox at http://javascript.daypilot.org/sandbox/ ) you can do this: dp.onEventClicked = function(args) { new DayPilot.Bubble().showHtml("Event details:...

Deleting event

Answered: Yes, there is no built-in onEventDelete event. You can call dp.events.remove(e) and then notify the server: dp.events.remove(e); $.post("delete", { e: e.id() }, function() { dp.message("Deleted"); } ...

asyncpostbacktrigger with daypilot navigator

Answered: The navigator fires two events: 1. TimeRangeSelected when you click a date 2. VisibleRangeChanged when you click "next" or "previous" links at the top You need to set TimeRangeSelectedHandling to "Po...

Display custom string in time headers

Answered: You can customize the header HTML using onBeforeTimeHeaderRender event handler: dp.onBeforeTimeHeaderRender = function(args) { if (args.header.level === 1) { args.header.html = args.header.start.toSt...

Daypilot lite 4.1 is free

Answered: Yes, you can download it here: http://www.daypilot.org/download.html

Change Navigator Week When Event Clicked in Month

Answered: You can change the navigator date using .select(date) method: http://api.daypilot.org/daypilot-navigator-select/ You can call it from the EventClickJavaScript handler: @Html.DayPilotMonth("dpm", new ...

day pilot displaying all three calendar?????

when ever i m clicking on toolbar command event is not firing and when page is open all three calendar that is daycalendar,weekcalendar and monthcalendar are visible????? y is it so ny help???

Text/Description for a seperator

Hey Dan! Can you add a Text to a seperator to descripe it? You could add a bubble for a short time when you do a mouseover over the seperator. Or show the text on the upper of the seperator. thanks d...

item duplicates

Answered: Please make sure that your resources have unique IDs and that the correct resource ID is specified for the event (see DataResourceField property). The event will be displayed in all rows where the re...

Problem with localization

Answered: Alex, You need to register it using DayPilot.Locale.register() method: DayPilot.Locale.register(localeMy); The .register() method must be invoked on DayPilot.Locale object directly (not on an instanc...