All Questions

DayPilot Bubble Feature

Answered: You need to follow these steps: 1. Create the bubble: <DayPilot:DayPilotBubble ID="DayPilotBubble1" runat="server" CssOnly="true" CssClassPrefix="bubble_default" /> 2. Assign it to the monthly calend...

How To generate Flowchart ?

Hi guys...i want to create A flow chart from data stored in my Project Management module, but i colud found any suggestion how? i want to generate Flowchart in C# programatially (not using any Tool) ...

Daypilot Scheduler

Answered: You should set .StartDate (the first visible day) and .Days (number of days) to match your event set. SetScrollX() will set the scroll position but it has to be within this range.

Reccurence problem in month view (render)

Answered: When selecting the recurring events you need to include all recurrence definitions from the past as well. See also: http://code.daypilot.org/34377/shift-scheduling-tutorial-asp-net-sql-server-c-vb-ne...

Crosshair when Drag&Drop

Hi there, is it possible thow show the crosshair in scheduler when I drag an event? At the time when I click the event to drag&drop, the crosshair is not available. Thanks for help. Dennis

DayPilotMonth Calendar

Answered: DayPilotMonth inherits from System.Web.UI.WebControls.DataBoundControl which handles the DataSource processing. DayPilotMonth just reads the supplied items. It doesn't detect the actual DataSource ob...

Event rendering different on Chrome

Answered: If you don't use EventSortExpression it will be sorted using an equivalent of "start asc, end desc". If both event start and end are identical then the result is not guaranteed. It turns out that IE ...

Clearing all the event of Daypilot

Answered: Server side: DayPilotScheduler1.DataSource = null; DayPilotScheduler1.DataBind(); DayPilotScheduler1.Update(); Client side: dps.events.list = []; dps.update();

Right click event

Answered: Sorry about this one. Accidentally had eventRightClickHandling = "ContextMenu" below everything

Custom hover event

Answered: It's not implemented at the moment. It might appear in the 7.4 release but I can't promise it.

DayPilot Lite Schedular is Very Slow in IE 10

Answered: First, you should also check if it is the Scheduler and not your SELECT command that is causing the delay. DayPilot Scheduler Lite is not optimized to display a large number of events. You can try th...

Time on y-axis and Users on x-axis in daypilotscheduler

Answered: DayPilot Scheduler has resources/users on y axis and time on x axis by definition. It's not possible to switch the axes. You can use the Calendar switched to Resources mode (i.e. custom columns that ...

Add Columnb/Attributes

Answered: In BeforeEventRender event handler, you can reach the original data item using e.DataItem property: e.DataItem["field1"] // field1 e.DataItem.Source // the original object e.DataItem is accessible au...

Hide all Time Headers in Scheduler

Answered: You can use the following workaround: function afterRender(data, isCallBack) { dps1.showBaseTimeHeader = false; dps1.timeHeaders = []; dps1.update(); } And set AfterRenderJavaScript="afterRender(data...

Display Back to Back Events in Scheduler

Answered: 1. The combination of UseEventBoxes=Never and setting the end time to the start time of the next event should work. If you take Image 3 and set UseEventBoxes=Never, does it work as expected? 2. You s...

daypilotcalendar for multiple users

Answered: If you want to show calendars for 30 or more users it is definitely better to switch to daypilot scheduler which displays the resources (people) on the vertical axis: http://www.daypilot.org/demo/Sch...

Define URL for Event

Answered: By default there is no URL associated with the event. You should handle the EventClick event and define the required action. For redirecting it to a specified url you can use something like this: <%=...