All Questions

Right click from mobile

Answered: With the upcoming 7.8 release you will be able to use: dp.eventTapAndHoldHandling = "ContextMenu"; This will activate the context menu for the "tap and hold" gesture. You will need to add custom drag...

Allow future date selection in DayPilotNavigator

Is there a way to enable quickly getting months/years ahead. I have seen other selectors where you can click on the Month name and it pops up a quick way to go several months ahead. How do I do this?

Event Moving

Answered: You need to handle the EventMove event on the client side: <DayPilot:DayPilotCalendar .... ClientObjectName="dpc" EventMoveHandling="JavaScript" EventMoveJavaScript="ask(e, newStart, newEnd);" /> <sc...

Click event on resource in Scheduler

Answered: Got it to work with a contextMenu: dp.onBeforeResHeaderRender = function (args) { args.resource.contextMenu = new DayPilot.Menu({ items: [ { text: "Something", onclick: function () { alert("You click...

Actual dates

Hello, is there a way to include in the Event the actual dates? (Actual Started Date, and Actual Ended Date)?, and have a graphical view of the Planned vrs. Real?

CellsPerHour equivalent

The web forms event calendar control has a CellsPerHour property to set the number of divisions between hours. I don't seems to be able to find a similar property in the MVC flavoured control. How ca...

Enable specific hours in a day

Answered: In the scheduler, you can choose to display only selected fragments of a day using IncludeCell event: http://doc.daypilot.org/scheduler/hiding-time-columns/ It's also possible to create the timeline ...

Event Customization

When events change (ex: start time or name of event), how can I hi-light the event to show a different color from the other events so users know an event has changed? I looked at the documentation on...

How to make customized navigator

Answered: Please take a look at this guide: http://doc.daypilot.org/month/manual-date-switching/ You can bind any kind of navigation controls (plain links, drop-down list, etc.) using .commandCallBack() method...

OnEventMoved

Answered: It seems the lite version doe snot support this. I am now using the prod and it works,

Week Days

Answered: This is possible, but you need to Pro version ( http://www.daypilot.org/buy.html ). If you switch to the "timesheet" view using ViewType="Days" it will display 24 hours of day on the X axis and days ...

onEventMoved preventDefault

Answered: Solved. The main problem that I used ajax updating of event that desynchronise move and moved events.

How to update through MySQLi

Answered: Can you try to download the sample PHP project from here? http://code.daypilot.org/17910/html5-event-calendar-open-source The downloads include a working PHP project with all the features working. Pl...

TimeRange Selecting adds one hour

Answered: How do you read the e.start value? On the client side, e.start() returns a DayPilot.Date object. It holds the date in the internal .d property which shouldn't be read directly (it's stored as a GMT d...

Inter Month report for Day Pilot lite

Good After noon, This is regarding the solution for a situation for my day pilot lite. I need to show the event between 15 May 2014 and 15 June 2014. I am getting the bar for 15 May 2014 till end of ...

Update event data

Some times after some changes of event the calendar won't show changes until refresh all page or reload all events. I'm using dp.events.update(evnt) function.