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) ...
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.
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...
Answered: This error suggests that the daypilot-all.min.js file was not included properly. This file defines the DayPilot namespace - it includes all the .js files merged (common.js, calendar.js, month.js, mod...
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
Answered: Yes, it's possible. The StartDate must be set to the first day. You need to use ShowNonBusiness="false" option. Then you will be able to hide individual time columns using BeforeTimeHeaderRender even...
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...
hi, I want to ask is the example that you have for DayPilotMonth is when clicking the event on the calendar, a popup will appear. Instead of a popup, I want it to appear a MultiView. But the DayPilot...
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 ...
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...
Answered: You need to use BeforeEventRender event handler: protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e) { e.BackgroundColor = (string) e.DataItem["colorfield'...
Answered: There was a bug which is fixed now in the latest sandbox build (7.4.2900): http://www.daypilot.org/sandbox/ Please let me know if the problem persists.
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...
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 ...