Questions Tagged bug
the calendar has an issue in ie8 mode
Answered: This issue should be fixed now in the latest build (8.1.3504). You can download it in the sandbox: http://www.daypilot.org/sandbox/ Just note that DayPilot is not supported on IE8 and previous IE ver...
Group Concurrent Events with Tree Resources
Answered: This bug is fixed now in the latest build (8.2.2082): http://javascript.daypilot.org/sandbox/ Thanks for reporting the problem!
Resources are not expandable in 8.1SP6 when resource.Expanded is set to false
Answered: I confirm the bug. It should be fixed now in the latest sandbox build (8.1.3503): http://www.daypilot.org/sandbox/Scheduler/ A SP with the fix will be released shortly. > On my initial post I had a c...
CheckboxList inside UpdatePanel and DP 8.1 SP1 or higher
Answered: Hi Dan, yup, disabling the client init event fixed the checkbox list! When will the next service pack be released so I can use the newest build? The sandbox is only available as trial right? Thanks o...
Null Reference Exception on scheduler CallBack
Answered: Which version of DayPilot do you use? One of the recent sandbox builds had a bug which had symptoms like this. It is fixed in the latest release (8.1.5819): http://mvc.daypilot.org/demo/Scheduler/ Le...
Differences between same data in IE8 and IE11/Firefox Nightly ?
Answered: I know that it's not what you want to hear but Microsoft stopped supporting IE 8 in January and so did we. I don't recall any similar problem but you can try using the latest DayPilot Pro version (8....
0x800a1391 - JavaScript runtime error: 'DayPilot' is undefined
Answered: The tutorial text was missing the client-side script reference:
<script src="@Url.Content("~/Scripts/DayPilot/daypilot-all.min.js")" type="text/javascript"></script>
In the sample project (http:/...
Gantt: Property task.DataItem null after RowSelect
Answered: The DataItem works only when you call .DataBind() on the Gantt control during a request. This reloads the tasks from the data source and saves the source object as e.DataItem. If you don't call DataB...
New row is creating automatically
If I am creating a new appointment, then the day daypilot scheduler is creating a new row automatically as shown in the attached image. But it is not occuring in every time. Is it a bug? How to fix i...
Scheduler never returns from Callback when after third event is selected.
Answered: This usually means there is a JavaScript error that prevents the callback from completing. 1. You should be able to the details of the error it in the JavaScript console. 2. Sometimes, the client-sid...
Sheduler + Jquery Tabs scaling problem
Answered: The latest DayPilot Pro for ASP.NET MVC version (8.1) includes an auto-detection mechanism that waits until the Scheduler becomes visible and fixes the layout. It looks like you might be using an old...
DayPilotCalendar not rendering hours correctly in HeightSpec=BusinessHoursNoScroll if toggled hidden/visible
Answered: The browsers don't allow setting the scrollbar position on elements that are hidden. The workaround is to call dp.enableScrolling() on the client side after the control becomes visible (where "dp" is...
dp.locale = "es-es" not working
Answered: This bug should be fixed now in the latest build (8.1.1973). You can download it in the sandbox: http://javascript.daypilot.org/sandbox/
headerlevel
Answered: Sorry for the delay! This turned out to be a bug of the .update() method. It should be fixed now in the latest sandbox build (8.1.1981): http://javascript.daypilot.org/sandbox/ Let me know if there i...
187-lite
I am using the JavaScript version of the Calendar (187-lite). dp.viewType = "week"; dp.eventDeleteHandling = "Update"; dp.dayBeginsHour = 7; dp.businessBeginsHour = 7; dp.businessEndsHour = 22; dp.da...
Bubbles with dates on scheduler have static locale.
Answered: This is a bug, indeed - it should be fixed now in the latest sandbox build (8.1.1931): http://javascript.daypilot.org/sandbox/ These indicators are disabled by default - you can enable them using .ti...
Click events not firing in chrome
Answered: I have tried this on a few other computer and the issue seems to be isolated to one specific computer. The issue appears to be machine specific and not a problem with the scripts. JD
DayPilot - Scheduler Javascript
I am trying applying fore and back color for the message bar of scheduler based on success and error scenarios by using the method, but it not overriding the css we have for message bar. Please fix t...
Last column Header Lower
I have a possible bug/issue with DayPilot 8.1 where the text in the last cell of the header barely appears. I have been tweaking and adjusting the config in angular directive + $scope.config to get i...
Resource Header Width
Answered: Hi. Yes, You were right! With the new version everything works fine. Now, do I have to buy a new license?
Problem clearing events in Angular
Answered: A few notes: 1. When performing the operations on the events you can either modify the model or use the direct methods. The difference is that the direct methods call $apply to notify Angular about t...
Cell background set in BeforeCellRender but not show for whole scheduler
Answered: Are you using the latest DayPilot version? Something like this can happen: 1) if the Scheduler height is detected incorrectly (this may happen if the parent element is hidden during the Scheduler ini...
Day Pilot Navigator cannot move to next month when scheduler in next month
Answered: I confirm the bug. It should be fixed now in the latest sandbox build (8.1.3461): http://www.daypilot.org/sandbox/ Let me know if there is any problem.
Delete icon in Monthly Calendar
Answered: I can see the delete icon on this demo page (IE, FF, Chrome, Edge): http://javascript.daypilot.org/demo/month/eventdeleting.html Do see the problem in the demo as well? A few things to check: 1. The ...
Day pilot scroll displaying always
Answered: Unfortunately I'm not able to reproduce the issue. If I add .cellWidthSpec = "Auto" to the following demo the horizontal scrollbar disappears: http://javascript.daypilot.org/sandbox/scheduler/height1...
End date is adding one day
Answered: By default, the Scheduler works with exact points in time. E.g. a one day event starting on 2015-10-01T00:00:00 ends on 2015-10-02T00:00:00 (duration of 24 hours). However, you can adjust how the Sch...
Undo Moving event and Undo Resizing event
Answered: Use .onEventMove event handler instead and call args.preventDefault() to prevent the default action and onEventMoved event from being processed:
dp.onEventMove = function(args) {
if (!confirm('A...
Switcher bug
Answered: Thanks, it should be fixed now in the latest sandbox build (8.1.1842): http://javascript.daypilot.org/sandbox/
Daypilot height 100%
Answered: If you want to set the height to 100% of the parent element, you should use this:
dp.heightSpec = "Parent100Pct";
Please note that this requires the parent element height to be set explicitly - s...
json date not converting to daypilot date format
I am rendering all daypilot events by ajax from server(the result is JSON) when i am trying to push it shows invalid time zone. For this i need to iterate all events convert to Daypilot date ,is ther...