Answered: Loading less Events should be a good Thing. Now i am getting back about 20 Events. And the CPU is "only" going up to 6% when reloading. And when Scrolling at this Moment the Scheduler hangs for a sho...
Answered: Most likely this is caused by loading more events than necessary. You can try limiting the event set using StartDate and Days properties. See an example from the ASP.NET MVC 4 event calendar tutorial...
Answered: 1. You can use the ClientState property: http://doc.daypilot.org/scheduler/clientstate/ 2. Or you can modify the .backendUrl dynamically on the client side and read the query string it in the control...
The main menu is absolute (when you right click the schedule), and the sub menu is appearing where ever the cursor is making it very difficult to use. Could this be fixed ASAP please by putting it in...
Answered: In most cases, it should not reset (at least it is not reset explicitly). However, you can save the vertical scrollbar position before the AJAX call using getScrollY() and set it to the same value af...
Answered: It looks like you have placed the scheduler inside an element with z-index specified. You can try specifying a higher z-index for the menu using ZIndex property.
Answered: This is now fixed in build 8.0.1518. The child nodes that match the filter will be visible including their parents. http://javascript.daypilot.org/sandbox/scheduler/rowfiltering.html
Hi, I fill my daypilotscheduler with a datateble just like on the demo. But when I add more that one reservation for a room it works ok showing every reservation next to another, but generates new ro...
i am loading the grouped resources and setting "expanded = true" to all resources. But on the top-level resources there is no effect. I can expand it with a click. But not with the option true/false?!
I have many Resources in Groups. The "Parent"-Resources shouldnt be able to book events on. And the backcolor of this rows may dark (or something like that). And if the user drags over thuch a row th...
Hello, I'm using ASP.NET Scheduler Pro for WebForms (v7.9.3373). DayPilot-Scheduler returns wrong time selection when ViewType="Days" and ShowNonBusiness=false. It's an urgent issue. Please help Than...
I'm thinking about using this for a room booking scheduler, but rather than showing multiple days horizontally, I would like to only show a single specific day with all the available rooms and the se...
It doesn't appear that setting $scope.config.startDate in the controller does not automatically refresh the calendar like it does with scheduler. How do I dynamically reset the start date from a cont...
I have a DayPilot scheduler on my app. When I set up the component originally, it is set with cellWidthSpec="Auto" and everything is set fine. I later retrieve my resources via Ajax and set them into...
I see in the documentation the headerHeight parameter, but when I set it, it is always rendered as 20px. Am I missing something? I'm using the Angular implementation with the attached config
Answered: This issue is now fixed in the new 1.2 release: http://javascript.daypilot.org/daypilot-lite-for-javascript-1-2/ Let me know if there is any problem.
We have updated our MVC Calendar to version 7.9.5745.0 and have now problems with the TimeRangeSelection on iPad. Since the update, a single touch on a cell doesnt create a Selection. We have to Touc...
Answered: Unfortunately the cell duration must be fixed for the whole day in the Calendar. In the Scheduler you can create a custom timeline that will be non-linear: http://doc.daypilot.org/scheduler/timeline/
Answered: If you click a cell TimeRangeSelect/TimeRangeSelected event will be fired: http://api.daypilot.org/daypilot-scheduler-ontimerangeselect/ http://api.daypilot.org/daypilot-scheduler-ontimerangeselected...
Answered: 1: You can add a custom delete button using an active area. It's described here as method #3. You can make the active area permanently visible by calling Area.Visible(): http://doc.daypilot.org/sched...
Answered: Inline editing of existing events is supported: http://doc.daypilot.org/scheduler/inline-event-editing/ You can also create a new event and immediately start inline editing. See the following example...
Answered: You can access the controller using Controller property in the backend class: public class SchedulerController : Controller { public ActionResult Backend() { return new Dps().CallBack(this); } class ...