Answered: DayPilot Pro v7.7 introduced "Floating Events" feature that does what you need - the it makes the text of long events visible (in the current viewport). Please take a look at 7.7 release notes for mo...
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...
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?
Answered: You need to handle the EventMove event on the client side: <DayPilot:DayPilotCalendar .... ClientObjectName="dpc" EventMoveHandling="JavaScript" EventMoveJavaScript="ask(e, newStart, newEnd);" /> <sc...
"Hi, with Daypilot Scheduler < 7.0 is it possible to adjust the row height manually (maybe with some css overrides) to a fixed height ? In my specific case I need to limit the rows displayed for a re...
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...
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?
I want to hide the Week ends(Saturday and Sunday) in the Weekly view of DayPilot Day/Week/Month Calendar MVC. I have hided them in Month view using ShowWeekEnds flag. But want to do it in Weekly view...
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...
Hi, I get this exception if the calendar has the BeforeEventRender event. Why this happen? This happen because the Source is null, how I can set this property? Thanks in advance
I need the hour column of the calendar to be fixed (so it stays in place while I scroll right). As much as I would like to do it myself, I haven't got the time to dig through all the 6500 lines of co...
Hi, I have my own methods to delete, insert, these methods need x parameters to work, how properties of the DayPilotcalendar which I link to my methods?, i.e, to select would be DayPilotCalendar1.Dat...
Answered: You are using the server-side syntax: Modal.Close(this, "OK"); On the client side, it has only one parameter: window.parent.DayPilot.ModalStatic.close("OK");
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 ...
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...
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...
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 ...
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...
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...
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 ...
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.