Questions Tagged
Events Not Loading: Customized Work Week View
Hi, When we use Viewtype="resource" customized work week grid is displayed but events are not binding. If I remove Viewtype="resource", single day displayed and event also displayed.
Multiple resources timerangeselect
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
SQLite
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...
Monthly report
Hello How to design the monthly view of the event in the report form, based on the events entered using the calendar?
Event moving between schedulers
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
integrating the daypilot calendar with may controller/view
Answered: In the Pro version, there is a ClientState property that will hold and persists such data (such as filter parameters) and pass them to the server side with every callback: http://doc.daypilot.org/cal...
Can i have this on Delphi - Pascal?
Answered: Unfortunately this only works on .NET. I'm not sure if there is any EWS library for Delphi available. The Microsoft EWS library is a wrapper around the Exchange Web Services API (SOAP) which can be a...
Scheduler styling: small vertical open space between rightmost column and right border
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 ...
Event Calendar: Select time range that span over two days
Hi Dan, In the event calendar, it appears you can only select a time range that starts and ends on the same day (e.g. 12:00AM to 12:00AM). However, I'm trying to select a range that spans more than o...
Start and End Dates Daypilot Scheduler coming as wrong
Answered: Hi Dan, Initialise the DayPilot controls @Html.DayPilotCalendar("dpc", new DayPilot.Web.Mvc.DayPilotCalendarConfig { BackendUrl = Url.Content("~/MyRequests/Backend"), TimeRangeSelectedHandling = Time...
Exception (DataItem doesn't hold any source object)
Answered: I'm including your answer as a special post and marking the questions as answered. Thanks for posting your solution. Answer:- Add PreRender Event of Daypilot and Bind DayPilotCalander , like
protec...
Delete event in lite version
Answered: The Lite version doesn't implement the integrated "delete" icon. The best way to handle it would probably be including a special "Delete" button in the "Edit" modal dialog (just like Google Calendar ...
Using DayPilot.Scheduler.options.update(), all events disappear
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 ...
idle time
I have schedule control and all is good. The problem happens when user leaves browser open for some time and it looks like page gets reloaded so all expanded groups collapsed at this point. I have au...
Events not Displayed in custom timeline
Answered: Please see the following page with debugging instructions: http://kb.daypilot.org/101644/events-not-showing-up-in-the-scheduler/ In the MVC version, the events are loaded using a special callback whi...
How to change weekly calender
Answered: You can change the visible week using startDate property:
<select id="week">
<option value="2016-04-04">Week 14</option>
<option value="2016-04-11">Week 15</option>
</select>
<div id="dp"...
When I call my web page, I only see the present week. How do I display the entire month?
Answered: Unfortunately the month view is not available in the ASP.NET version of DayPilot Lite. http://doc.daypilot.org/month/ However, you will find in it the ASP.NET MVC and JavaScript versions.
How to disable close modal window on background clicked
Answered: It's in .update() method and it looks like this:
window.setTimeout(function() {
This.hideDiv.onclick = function() { This.hide(); };
}, 500);
In v2.2 it's line 190.
Directive not working
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>Angular...
AngularJS how to set businessBeginsHour, businessEndsHour and calendar height
Answered: It's supposed to work like this:
<div ng-app="main" ng-controller="CalendarController" >
<daypilot-calendar id="calendar" daypilot-config="calendarConfig" daypilot-events="events...
DayPilotNavigator
Answered: Please see the following doc page: http://doc.daypilot.org/navigator/highlighting-busy-days/
Daypilot Scheduler - Export to PDF
Answered: If you want to add custom header and footer to each PDF page simply use the code from "Add Title to PDF" section:
// create a graphics object for PDF page modification
XGraphics gfx = XGraphics.Fr...
Disable eventoverlap on on client side in calendar?
Answered: Unfortunately it's not implemented in the Calendar at the moment. It will be added in one of the future releases.
Hide/Show Navigator in AngularJS(Datepicker style)?
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.nav...
Scheduler vertical scroll
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...
how to edit create events with recources ?
how to edit create events with recources ? can you give us examples with recouces
Events background color in exported PNG image
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.
Start displaying Monthly calendar by the date of the current day
Answered: nevermind, Looks like it's a pro feature...