Active Questions
Missing types for DayPilot.Gantt
Hi Dan, I believe the following Types are missing from DayPilot.Gantt. DayPilot.Gantt visibleStart() multiselect multiselect.add() multiselect.tasks() multiselect.clear() DayPilot.GanttBeforeCellRend...
Best SaaS license
Answered: It looks like you will need the “SaaS Team” license that includes 1 application, unlimited deployed instances (e.g., for scalability or failover purposes) and covers up to 5 developers. Just make sur...
DatePicker
Hi The DatePicker/Navigator seems to be verylimited in functionality. For example if we want the user just to select year only, we cannot do that. If we want the user to select date and time, we cann...
Possibility to prevent the text to get highlighted when start editing an event with Scheduler.control.events.edit(event)
Answered: You can cancel the selection and place the caret at the start using the onAfterEventEditRender event: onAfterEventEditRender: args => {
setTimeout(() => {
args.element.setSelectionRange(0, 0)...
onEventEditKeyDown acces current text
Answered: In onEventEditKeyDown, the args.element property stores the <textarea> element used for editing. You can get the current text using args.element.value.
Scheduler dynamically change the height config and update visually
Answered: Have you tried using heightSpec: "Max100Pct"? This option is designed exactly for this use case. It will automatically stretch the height as needed, up to 100% of the parent div - then a vertical scr...
Need to Sticky Calendar Header on Top
Answered: You can look at the height options, especially heightSpec: "Parent100Pct". This setting makes the Calendar component expand to fill its parent element. A vertical scrollbar is added automatically, so...
Navigator update
Answered: Most likely, you are using a reference to an old instance that has been disposed already. So I recommend checking how you get the reference and make sure that it’s not an obsolete one.
Export Data Issue in RTL
Answered: At this moment, the image export of the Calendar component doesn’t work for RTL. This feature is in the queue and it will be implemented in the near future.
Scheduler: Infinite Scrolling issues on iOS
Answered: Hi Leo, It should be fixed now in the latest sandbox build (2025.3.6524). Please let me know if the problem persists.
Unexpected vertical scrolling behavior in Resource View since version 2023.4.5839
Answered: Hi Roman, Since version 2023.4.5839, the Calendar resources view supports a vertical timeline longer than 1 day. To display only 1 day on the vertical axis, you need to set the days property to 1. Pl...
Client-Side JPEG Export for custom headers and custom Event content
Answered: The capabilities of the image export are limited. Basically, you can export plain text and active areas. If you need an exact copy and are happy with the current viewport, it’s better to make a scree...
Inline Editmode Event size
Answered: You can use the eventEditMinWidth property to control the width. The Scheduler uses whichever is larger: the event’s width or the value of eventEditMinWidth.
How to implement Dynamic Data Loading in angular gantt chart
In my application I have very large number of dataset or tasks to be loaded(eg- 100000+ data), so that loading these much data initially is not a good a idea so i plan for dynamically loading on scro...
12pm is logged in the database as 24 hours later
Answered: This behavior is correct, if you add 10 hours to "2025-06-10T14:00:00", you will get the end of June 10, which is "2025-06-11T00:00:00". There is a related setting (the eventEndSpec property) in the ...
Date Format
Answered: The toString() method should work: > new DayPilot.Date("2025-06-10T00:00:00").toString("yyyy-MM-ddThh:mm:ss");
"2025-06-10T00:00:00" If you want to convert it to Date, you can use toDateLocal() to g...
Is it possible to have a sort of resource filter on the calendar?
Answered: You can start with the following tutorial which displays a resources calendar similar to yours (time on the vertical axis, resources/providers on the horizontal axis): JavaScript Resource Calendar Tu...
Is it possible to interface with a system that already has an established database?
Answered: Yes, you can use it with any database structure. You just need to supply the data to DayPilot components in the required structure. This can be done on the server side quite easily - you need to crea...
What version of PHP is required for your library?
Answered: The JavaScript version of DayPilot doesn’t include any server-side backend and you can use it with any version of PHP. The PHP tutorials at code.daypilot.org should run fine with PHP 5.3. If there is...
Kanban Card Bar Color
Answered: The onBeforeCardRender event is now available in the latest sandbox build (2025.2.6497). You can change the bar color depending on the column like this: onBeforeCardRender: args => {
switch (arg...
Questions 1-20 of 5179
Next