Answered: You can use DayPilotNavigator.BeforeCellRender event handler to add a custom CSS class to a day cell. http://doc.daypilot.org/navigator/cell-customization/ Note that in version 7.7 the CssClass value...
Answered: You can use something like this: An example using DayPilot.request(): function loadResources() { DayPilot.request("backend_resources.php", function(result) { var data = eval("(" + result.responseText...
Answered: You can use BeforeEventRender event to modify the event HTML as needed. protected void DayPilotCalendar1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.Calendar.BeforeEventRenderEventArgs e)...
Answered: The event height in DayPilot Month can't be set individually. You can increase the event height using .eventHeight property (for all the events). Having custom height for individual events would prev...
Answered: This turned out to be an issue of IIS Express that reports different values in request.Path and request.ApplicationPath. It's now fixed in build 1.3.401: http://mvc.daypilot.org/daypilot-lite-for-asp...
Answered: You will need to use the Calendar control switched to Resources mode: http://doc.daypilot.org/calendar/resources-view/ If you are going to display a lot of resources on the X axis of the calendar, yo...
Answered: Found the answer: hope this helps other people save some time //This gets called when the user drops the event dp.onEventMove = function (args) { //args.e is the event object that is being moved //ar...
Answered: This issue is now fixed in the latest sandbox build (7.7.3050): You can test it in the time headers demo which includes navigation buttons (previous/next): http://www.daypilot.org/sandbox/Scheduler/T...
Answered: This issue is fixed now in the latest sandbox build (7.7.5650): http://mvc.daypilot.org/sandbox/Scheduler/ExternalDragDrop The fix will be included in the next SP release.
Answered: Yes, there is a plan to add a year view based on the scheduler ( http://doc.daypilot.org/scheduler ). It will look like the timesheet mode ( http://doc.daypilot.org/scheduler/timesheet/ ) but there w...
Answered: You can try 1. to remove [assembly: AllowPartiallyTrustedCallers] from DayPilot/Source/Properties/Assembly.cs (and recompile DayPilot) or 2. to add [assembly: AllowPartiallyTrustedCallers] to your dl...
Answered: It is minimized using ESC (ECMA Script Cruncher). You can find the instructions here: http://www.daypilot.org/how-to-compile-daypilot-pro-source.html The ESC download page is no longer available but ...
Answered: I've posted a short tutorial that demonstrates how to modify the CSS theme for the timetable tutorial : http://code.daypilot.org/39902/asp-net-timetable-with-custom-css-theme Instead of the _matrix c...
Maybe there are more than one problem but i'm stuck at pretty much the first row. I am trying to allow my users to make the scheduler/calendar "fullscreen" by snapping it out of the main window into ...
Answered: This has to be done on several levels: 1. You can use the authentication system you already have in place to identify the current user. 2. Let's simplify the authorization rules (ACL) to general "rol...
Answered: It depends on what you actually want to do (and it looks like #1 is what you are looking for): 1. If you only want to call a client-side method, use EventClickHandling="JavaScript" and specify your j...
hi Dan, besides selecting multiple events, would be also cool if the user is able to move or drag n drop multiple events in scheduler e.g. by pressing ctrl key? And all of event or callback argument ...
Answered: What you describe is basically the default "Resources" mode: http://doc.daypilot.org/scheduler/resources/ You need separate database tables for "Tasks" and "Actions". Task = has a name, displayed in ...
Answered: You can use 'moveDisabled' property: var e = new DayPilot.Event({ start:new DayPilot.Date(), end:(new DayPilot.Date()).addHours(5), id: DayPilot.guid(), text: "New Event", resource:'E', moveDisabled:...
How do you implement 'all-day' events in the month view. If the client wants to show the event start time it is still showing for events that have a start and end time of 00:00:00. What is the correc...
Version: DayPilotProMvcTrial-7.6.5625 Once I set below properties BusinessBeginsHour = 8, BusinessEndsHour = 17, ShowNonBusiness = false for scheduler (timeline view), drag and drop feature stops wor...
Answered: This behavior is only supported on touch devices. Dragging in the grid will scroll the area. In order to start selecting a time range you need to hold the finger for a while.
Answered: The Scheduler doesn't contain any element that can get focus. You can detect the Delete key for the whole page using the following code: <script type="text/javascript"> $(document).keyup(function (e)...
Answered: This turned out to be a bug of the 7.1 release that was used in the Timetable Tutorial. The tutorial is now updated with the latest release (7.6) and the problem is fixed. http://code.daypilot.org/65...