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: Unfortunately, it's not possible to stretch the row height automatically because it's based on the event box height and the number of overlapping events. However, it's possible to use heightSpec = "M...
Answered: This issue seems to be related to the timeline only. You can see this exception if the timeline is empty, i.e. when Days is set to 0 or if you hide all columns ( http://doc.daypilot.org/scheduler/hid...
I want to perform an external drag from a gridview to a Scheduler with a linked navigator to select date. If we select different date from the calendar, e.StartDate and e.EndDate will still be Today ...
Good Morning, I'm initializing a scheduler javascript. I have a problem when I move the data. I was trying to create a method that would allow me to avoid overlap of events. Through a Request Daypilo...
Good Day for you all. I have a problem with the DayPilot Scheduler Control (Take for example this one http://www.daypilot.org/demo/Scheduler/Theme8.aspx when making 'Room A' at the bottom of the Reso...
"Hi, with Daypilot Scheduler < 7.0 is it possible to adjust the row height manually (maybe with some css overrides) to a fixed height ? In my specific case I need to limit the rows displayed for a re...
Answered: How do you read the e.start value? On the client side, e.start() returns a DayPilot.Date object. It holds the date in the internal .d property which shouldn't be read directly (it's stored as a GMT d...
Thank you for the update to the Month Headers in Scheduler, this is something that I was hoping for for a long time. Unfortunately, our official browser at work is Internet Explorer, and the floating...
Answered: The first thing to try is to disable the Row Header Width Auto-Fit feature: http://doc.daypilot.org/scheduler/row-header-width-auto-fit/ More resource header optimizations are scheduled for the next ...
Answered: The zooming implementation in the ASP.NET demo ( http://www.daypilot.org/demo/Scheduler/Zooming.aspx ) is quite simple: It overrides the default time header cell text using BeforeTimeHeaderRender eve...
I need to capture any mousedown and mouseup event fired on the scheduler. I've tried just adding an eventlistener to the entire dps container like this: $("#dps")[0].addEventListener("mousedown", fun...
Answered: Sorry, didn't see this: http://api.daypilot.org/daypilot-scheduler-getviewport/ dps.getViewPort().start and dps.getViewPort().end is what I was looking for.
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 ...
I am trying to get an event on scheduler to span multiple days. The start and end date are 3 days apart but scheduler only shows the event on the first day (my scheduler groups by day & hour) but wit...
Answered: Nevermind I found my own answer on this board with a bit more searching. For those curious here is the post that helped me. Thanks. http://forums.daypilot.org/Topic.aspx/1907/month-changing-event-bac...
Answered: It looks like you might be missing the DayPilot object reference when calling commandCallBack: v.items = [{'text':'Paste', 'onclick':function() { var e = this.source; var command = this.item.command;...
Answered: Fixed it by adding "if (level == 0) groupBy = _scheduler.CellGroupBy;" to function "private TimeHeaderRow PrepareGroupline(int level)" in SchedulerTimeHeader.cs after line "GroupBy groupBy = _schedul...
Answered: You need to change EventMoveHandling="CallBack" to EventMoveHandling="JavaScript". It's now added to the documentation: http://doc.daypilot.org/scheduler/event-copying/
Answered: The best way to do this is to set EventMoveHandling and EventResizeHandling valu depending on the permission check. The default value is "Disabled" which will work for read-only scenarios. If the use...
Answered: There are two options: 1. You can define the bubble HTML in BeforeEventRender event handler. This will store the bubble HTML with the event (it will be static). No server-side call will be required w...
Answered: This method was internal and is now hidden. You can use the following method to get information about a cell under certain position: var cell = dps.cells.findByPixels(120, 1)[0]; var start = cell.sta...
Answered: You can set custom background color, HTML and CSS class for individual grid cells using BeforeCellRender event handler: http://doc.daypilot.org/scheduler/cell-customization/
Hi Dan, I have added a functionality to remove a resource from the scheduler control by clicking on an icon in the resource header. How I accomplish this is by iterating over dps.resources array to f...
I am using the DayPilotMenu control and the DayPilotScheduler in tandem in an ASP.NET MVC application. The DayPilotMenu control displays a context menu when the user clicks in one of the cells of the...