Answered: In the Calendar, the mechanism is slightly different: 1. If you want to hide selected days (which are displayed as columns) you need to switch to ViewType="Resources" and generate the columns manuall...
Answered: Yes, it's possible. You'll need to replace the browser-server communication with direct API calls. 1. For calling JavaScript functions from the WebForms application use WebBrowser.Document.InvokeScri...
Answered: Simply adding ShowNonBusiness="false" should be enough. See also: https://doc.daypilot.org/scheduler/hiding-non-business-hours/ And a demo here: http://www.daypilot.org/demo/Scheduler/HideNonBusiness...
Answered: This happens because the Scheduler doesn't have any timeline to display. It's an invalid setup. In the latest version it shouldn't throw the exception anymore - it will display an empty scheduler. Wh...
Answered: Sorry for the confusion. The documentation on .message() was out-of-date. The current syntax allows you to pass additional properties using "options" object like this: dp.message("Test", { cssClass: ...
Answered: The backend URL is just a URL string and it doesn't allow passing anything else. You can pass custom parameters as an ID, query string or in a cookie. Example for custom query string: @Url.Action("Ba...
Hi I'm encoding user input with HttpUtility.HtmlEncode (so apostrophes become e.g. ’) and the encoded input is being saved to database. When DayPilot calendar uses this data it renders fine, bu...
Hi all, I'm wondering if it's possible to implement the autoScroll properties (available on Daypilot Scheduler) on the Daypilot Calendar. I have tired to set autoScroll = "Always" but it's not workin...
Hi Is it possible to visually group the resources without make a tree (with no row for the parent(s) of the resources) ? Like on the screenshoot attached : beds are resources beds B and C are in the ...
Is there a way to get an event width to be representative of its start and end time? As an example scenario, if I had an event that started at 12pm (12:00) and finished at 6pm (18:00), is it possible...
Answered: You can use the built-in autorefresh feature: https://doc.daypilot.org/scheduler/autorefresh/ It will fire onAutoRefresh event in the specified interval. The execution is paused during drag and drop ...
Answered: There is a sample project that shows how to use the Scheduler dynamic loading. It's a more real-world scenario, it uses a database backend (unlike the demos that come with DayPilot Pro for JavaScript...
Answered: This is how it works at the moment: If the modal displays a URL (and not custom HTML) it creates an iframe object and uses it to display the target page. Creating the iframe is expensive so it keeps ...
In DayPilot Scheduler Event drag is working fine but I cannot resize the event by dragging. Can Anybody help me to fix this Issue? Using following version. DayPilot Pro Copyright (c) 2005 - 2016 Annp...
Hi, I am using DayPilot Event Links in my system to show the dependencies oh the workers. But i found that some of the pointer is not pointing to accurate events. Some of them are working normal but ...
Answered: I confirm the bug. It doesn't update the state information correctly during callbacks. Any change that returns events to their original state is interpreted as "no change". This bug is now fixed in t...
Answered: The Scheduler uses exact time points. If you select a single day the dates will look like this: * start = 2016-08-10T00:00:00 * end = 2016-08-11T00:00:00 If you store the dates as date only (instead ...
Answered: You are probably using the sample project from the Hotel tutorial: https://code.daypilot.org/27453/html5-hotel-room-booking-javascript-php That project uses a manually generated time scale to adjust ...
Answered: It's possible to insert custom segments into the time headers cells using time-based active areas. This technique is used in the following demo to split a month into thirds: http://javascript.daypilo...
Answered: The HeightSpec value can't be set dynamically using CSS. However, if you use HeightSpec="Parent100Pct" it will automatically adjust the Scheduler height to match the height of the parent element. Jus...
Answered: Christos, Take a look at the "Asynchronous Validation" demo: http://javascript.daypilot.org/demo/scheduler/asyncvalidation.html dp.onEventMove = function(args) { args.async = true; dp.message("Checki...
Hi, I was trying to apply snapToGrid false in our Scheduler (to be able to resize events by minutes), but it is really not working. Maybe is some other config property that is blocking it. Our config...
Answered: Unfortunately this sample relies on the Microsoft EWS library which is only available for .NET so there is no easy way to translate this project to Grails.
Answered: Are you able to reproduce this issue in the online demo? http://javascript.daypilot.org/demo/scheduler/ There is an option to link multiple events together so they will always be moved and resized to...