Answered: DayPilot Scheduler doesn't limit the number of resources. However, there are different heigh settings that will affect how many resources/rows are visible without scrolling. Please take a look at the...
Answered: The row filtering API is not implemented in the Gantt chart at the moment. However, you can hide the row by setting .row.hidden attribute of the task to true: var task = dp.tasks.list[0[; if (!task.r...
Answered: The latest sandbox build (8.2.2185) now supports vertical touch scrolling using the row headers: http://javascript.daypilot.org/sandbox/ Let me know if it doesn't work as expected.
E.g. calendar renders 30 minutes slots. But click, drag and unclick paints and adds in 15 minutes granularity. I try to use cellDuration = 15 can move and resize in 15 minutes but I don’t want border...
Answered: Unfortunately there is no way to control how the browsers will scale the page when using a zoom level other than 100%. However, you can try increasing the cell border width using custom CSS theme. Se...
Answered: You mus use the EventClickHandling and EventClickJavascript to envoke a ModalDialog, an show the editable data on it. https://doc.daypilot.org/scheduler/event-editing/
It's possible to resize the width of a rowheadercolumn in scheduler by simply moving the columnheader splitter left or right. How can I disable this? I tried the following things without success: row...
Answered: Yes, it's possible but you need to select the resources one by one (holding Ctrl): http://javascript.daypilot.org/demo/scheduler/multirange.html
Answered: Most likely the problem is that the process doesn't have permissions to write to daypilot.sqlite. 1. Trying adding the permissions. 2. Placing the DB file in a publicly accessible location is not a g...
Answered: Thanks for reporting the issue. It should be fixed now in the latest sandbox build (8.2.2143): http://javascript.daypilot.org/sandbox/scheduler/eventmovingtwoschedulers.html
The right side of the scheduler looks like this: http://imgur.com/D7Ngfvy Is it possible to just hide the outer border, or is there another solution to this? I'm using angular daypilot and I created ...
Answered: There are two ways to update events: dp.events.list = [ ... ]; dp.update(); Since build 1749 it's also possible to replace it with a single call: dp.update({ events: [ ... ]}); Note that in this case...
Answered: If you don't see anything in the JavaScript console I recommend starting with the following minimum code: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>AngularJS Event Calendar</title> ...
Answered: You can access the DayPilot.Navigator object using $scope.navigator (because id="navigator"). The config only holds the configuration data (it has no methods). Try this instead: // show $scope.naviga...
Hi, I've noticed that if I fill the Scheduler with resources to make it displays the vertical scrollbar and then scroll with the mouse wheel, the viewport move backward of one day per scroll. The sch...
Answered: This was a bug which is now fixed (since build 2100): http://javascript.daypilot.org/daypilot-pro-for-javascript-8-2-sp4/ Let me know if the issue persists.
Answered: At this moment, the Scheduler doesn't support loading additional resources during scrolling. All resources need to be loaded in advance using .resources array. However: 1. The row headers are rendere...
Answered: I recommend relying on the Navigator to request the events using the standard mechanism: 1. Let the "Next" button change the navigator only: <a href="#" id="next">Next</a> <script> $("#next").click(f...
Answered: When you purchase DayPilot Pro for ASP.NET WebForm you receive a download link to a full version of the package. You need to use DayPilot.dll that was included in the full package download. Sometimes...
Answered: Let's say you have a list of days to be highlighted: var days = ["2016-01-01", "2016-05-01"]; You can use the following code to highlight these days in the Scheduler: dp.onBeforeCellRender = function...
Answered: It's quite possible that the version you are using doesn't support row filtering. As you can see in the documentation ( https://doc.daypilot.org/scheduler/row-filtering/ ) the row filtering is suppor...
Answered: By default, the Scheduler prevents the event text from wrapping. You can change it using eventTextWrappingEnabled property: dp.eventTextWrappingEnabled = true; You can also set custom event height if...
Answered: This turned out to be a bug of the latest version - since the introduction of "events" attribute it fails to recognize "daypilot-events". It's now fixed in the latest sandbox build (8.2.2072): http:/...