Answered: I've tried to reproduce the problem using the following testing Web Form but it seems to work fine: CalendarContextMenu.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CalendarContextMen...
Answered: It was a bug, indeed. It should be fixed now in the latest sandbox build (8.2.5833): http://mvc.daypilot.org/sandbox/ Let me know if the problem persists. And thanks for reporting the issue!
Answered: With Angular, you can delete an event by removing it from the underlying event array (events/daypilot-events attribute). The calendar will be updated automatically.
Answered: The circle is the actual bubble object. It looks like you are using a custom bubble HTML that is defined as an absolutely-positioned element. This makes it pop out of the bubble and the bubble is una...
Answered: DayPilotScheduler1.VisibleStart is a DateTime object so you can get a custom formatted string from it using ToString(): DayPilotScheduler1.VisibleStart.ToString("yyyy-MM-dd"); See also here: https://...
Answered: Dave, If you open the TutorialHotel.sln file and change the following line (#2): # Visual Studio 2012 to # Visual Studio 2010 it should work.
Answered: DayPilot Scheduler doesn't limit the number of resources. However, there are different heigh settings that will affect how many resources/rows are visible without scrolling. Please take a look at the...
Answered: Peit, How do you activate the bubble? It should work fine for EventClickHandling="Bubble"? If the bubble used to open without EventClickHandling="Bubble" it might have been an unwanted side effect. A...
Answered: This scenario is not covered by the tutorial. However, you can select multiple time ranges at once using "time range multi-selecting" feature: http://doc.daypilot.org/scheduler/time-range-multi-selec...
Answered: You can display the start and end time using the following properties: <DayPilot:DayPilotMonth EventStartTime="true" EventEndTime="true ... /> Another option is to add the time at a specified locatio...
Hi Can you clarify the DayPilot scheduler costs and functionality please? As an organisation we are looking at both: • DayPilot for ASP.NET MVC version • DayPilot for ASP.NET Web forms version Can yo...
Answered: Very strange, since the function seems to be defined. One thing to check is the context from which you call the .close() method. To close the modal dialog from the parent simply call .close() on the ...
Answered: The row filtering API is not implemented in the Gantt chart at the moment. However, you can hide the row by setting .row.hidden attribute of the task to true: var task = dp.tasks.list[0[; if (!task.r...
Answered: The Gantt chart in this tutorial is based on the Scheduler control (it's the Scheduler controls switch to Gantt using ViewType="Gantt"). See also: http://doc.daypilot.org/scheduler/gantt-chart/ That ...
Hi Dan and Team, Further to post: https://forums.daypilot.org/Topic.aspx/1056/changing_week_to_working_week_ Will the RecurrenceExpander object take into consideration a working week, Monday through ...
Hello, in the newest Firefox releases the event bubble of DP can`t be displayed anymore. In older FF versions it worked well, also in all other major browsers it`s working without any problems. I`ve ...
Answered: The latest sandbox build (8.2.2185) now supports vertical touch scrolling using the row headers: http://javascript.daypilot.org/sandbox/ Let me know if it doesn't work as expected.
E.g. calendar renders 30 minutes slots. But click, drag and unclick paints and adds in 15 minutes granularity. I try to use cellDuration = 15 can move and resize in 15 minutes but I don’t want border...
Answered: Unfortunately there is no way to control how the browsers will scale the page when using a zoom level other than 100%. However, you can try increasing the cell border width using custom CSS theme. Se...
Answered: You mus use the EventClickHandling and EventClickJavascript to envoke a ModalDialog, an show the editable data on it. https://doc.daypilot.org/scheduler/event-editing/
Answered: What version of DayPilot do you use? It looks like you have a very old version of DayPilot.Mvc.dll (something like 1.1) and use it with a newer client-side library (daypilot-all.min.js). You always n...
Answered: Yes, you can customize the column HTML using BeforeTaskRender event handler: http://doc.daypilot.org/gantt/task-customization/ void DayPilotGantt1_BeforeTaskRender(object sender, BeforeTaskRenderEven...
Answered: Do you use custom sorting (EventSortExpression)? http://doc.daypilot.org/scheduler/event-sorting/ I'm not sure if this is the problem but the event sorting relies on JavaScript Array.sort() method wh...