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: DayPilot detects window size changes automatically and it will adjust the height of the Scheduler control to match the parent element height if HeightSpec is set to "Parent100Pct". The key here reall...
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: 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: 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: 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: 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: 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: Event multi-resizing isn't fully supported in the latest MVC version (8.2). The code above is for the JavaScript version and it may not work properly with the MVC version. However, the support for mu...
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...
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: 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 ...