Answered: If you need a simple bar with a specified color then you can use an active area: https://doc.daypilot.org/scheduler/event-active-areas/ You can also change the position of the duration bar by modifyi...
Answered: The custom CSS class will be applied to all cells. The cells that belong to a parent resource may have additional CSS applied that affect the appearance. Make sure that your CSS overrides that. The b...
I get my scheduler on my JSP page without any problem. Now i'm trying to search and display only ONE specific resource, or Project. i enter something in my jsp text input, i get a JSONException when ...
Answered: Have you replaced x.y.zzzz with the actual version number? Example for the latest release: https://npm.daypilot.org/daypilot-pro-angular/your-api-key/8.3.2864.tar.gz You can also get a link to a spec...
Answered: If you use the default .useEventBoxes value the events will be aligned with the grid cells: dp.useEventBoxes = "Always"; See also: https://doc.daypilot.org/scheduler/exact-event-duration/
Answered: You need to turn the features off one by one: dp.eventMoveHandling = "Disabled"; dp.eventResizeHandling = "Disabled"; dp.timeRangeSelectedHandling = "Disabled"; See also the following tutorial on mak...
Answered: If you import DayPilotModule in your own module like this: @NgModule({ imports: [ // ... DayPilotModule ], // ... }) export class SchedulerModule { } You'll be able to import the "DayPilot" namespace...
Answered: It's now possible to use fixed column width (since build 8.4.2890). See the sandbox: https://javascript.daypilot.org/sandbox/kanban/columnfixedwidth.html You can switch to fixed width like this: dp.c...
Answered: At this moment it's not possible but we are checking if there is a way to exclude parts of the js file that are not needed. A quick stats FYI: The Scheduler itself (without helper classes like Menu, ...
Answered: This should be already fixed since build 2886. See the sandbox: https://javascript.daypilot.org/sandbox/ Let me know if the problem persists. And thanks for reporting the issue.
Hi; How to find a resource by mouse position on rowColumnHeader using onmouseup event (not usingDaypilot.contextMenuResource) ! I used jquery like this $("body").on("mouseup",".scheduler_hotelca_rowh...
Answered: You can use an active area ( https://doc.daypilot.org/scheduler/event-active-areas/ ) to place a custom rectangle the the specified position. Like this: e.Areas.Add(new Area().Bottom(0).Left(0).Width...
Answered: The best way to target the DOM elements would be using the internal CSS classes (derived from the theme name) that are applied to the Scheduler: https://kb.daypilot.org/62119/list-of-css-classes-used...
Hi, I've followed this guide: https://doc.daypilot.org/scheduler/printing/ but on Internet Explorer it fails :( IE is in compatibility mode: EmulateIE10 Thanks, Giovanni
Answered: This issue should be fixed now in the latest sandbox build (8.4.2887): https://javascript.daypilot.org/sandbox/ Let me know if the problem persists.
We use a scheduler in a Ionic 3 - Angular 4 application and we face a problem: the scheduler is loaded in a dynamic component and when we try to click on events it doesn't work. The funny thing is th...
Answered: In Java, you can load the resources on the server side using getResources() method. Just fill the collection as needed. An example from https://java.daypilot.org/scheduler-tutorial/ : public class Dp...
Answered: The upcoming version of DayPilot.Modal (2.8) will include a fix for this. You can also release the reference manually by calling "modal.iframe = null;" in onClosed event handler. Note that if you reu...
Answered: The exportAs() method is available in the Scheduler (DayPilot.Scheduler object) since version 8.2.2117. Note that it's not available for the other controls yet (Calendar, Month, Gantt...). Let me kno...
Answered: The documentation can be found here: AngularJS 1.x documentation for <daypilot-gantt>: https://doc.daypilot.org/gantt/angularjs/ Angular 2+ documentation for <daypilot-gantt>: https://doc.daypilot.or...
Answered: Both sources - the article ( http://code.daypilot.org/63034/angularjs-event-calendar-open-source ) and the forum topic ( https://forums.daypilot.org/Topic.aspx/3170/directive-not-working ) use Angula...
Answered: Hi, If you are still looking for a solution. in MVC we have OnEventMove() being called on moving the events. You can probably check if the row is the one which you are looking for to be disabled. In ...
I am implementing the print functionality in a page that inherits master page in asp.net.so wen I clock on print the PNG generated has all the tabs n stuff which are in master page...How can I get on...
Answered: The resource id is available in "resource" variable in TimeRangeSelectedJavaScript: <DayPilot:DayPilotScheduler TimeRangeSelectedHandling="JavaScript" TimeRangeSelectedJavaScript="console.log(start +...
Answered: Hi Dave, If I understand it correctly, you want to display a kind of confirmation before the action is performed and the confirmation should display some dynamic data loaded from the server. I person...
Dear all, I posted this issue one year before, but still found no solution. when I create 2 subtasks, the superordinate task does not calculate to correct days. (Means beginning of the first task and...
After I added sessionState in StateServer mode in the web.config. I encountered System.Runtime.Serialization.SerializationException in the serialization of ResourceCollection. The text of the error i...