Answered: Andrew, Could you please try build 2718 from the sandbox? http://www.daypilot.org/sandbox/ This issue should be fixed there. Please let me know if the problem persists.
Answered: On the client-side, you can do the following: var hasEvents = dps.findRowByResourceId("A").events.length > 0; On the server side, there is no internal structure that keeps events matched to the resou...
Answered: Thanks for reporting the bug. It's already fixed in the latest codebase and the fix will be included in the next release: http://java.daypilot.org/daypilot-pro-for-java-7-1/
Answered: The events have to be loaded in full (for all resources) - except of the dynamic loading mode (DynamicLoading="true") when the events loaded in the Scroll event handler are added to the existing even...
Answered: Well the best answer is to get the Pro version -- the feature I described is built-in and maintained. However, I have made some adjustments to the "calendar.src.js" file below around line 2005. Be su...
Answered: The Scheduler control ( http://www.daypilot.org/scheduler.html ) doesn't support hiding individual columns in the Lite version. In the Pro version, you can use BusinessBeginsHour, BusinessEndsHour, a...
Answered: There was a bug - it's now fixed in build 7.1.2716. You can download it in the sandbox: http://www.daypilot.org/sandbox/ See also: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-2.html
Answered: You can use the following settings: <DayPilot:DayPilotMonth ... EventClickHandling="JavaScript" EventClickJavaScript="bubble.showEvent(e)" ... /> <DayPilot:DayPilotBubble ... ClientObjectName="bubble...
Answered: Steve is right: You should check the values in this column. It looks like one of the values is null. DayPilot uses the following code to get the DateTime value from the DataStartField column: string ...
Hi, I am using DayPilot version 6.4.2265.1 and I am coming up with event font size issue while setting it from code-behind. But when I set it from designer (.aspx) EventFontSize="14pt" it works. I wa...
Answered: If you are using CssOnly="true" mode you should check the following question: http://forums.daypilot.org/Topic.aspx/1692/how-do-i-change-the-colors-of-the-event-headers-in-version-7 You may need to m...
Hello, First of all, I would congratulate developers of this solution, this is a very very nice component ! I am trying to use the scheduler in order to display some bookings in the wallchart. But my...
Answered: At this moment it's only possible to disable the cells for the whole row by marking it as parent using PreventParentUsage. See also: http://code.daypilot.org/34704/restaurant-table-reservation-tutori...
I have 10+ years of data and I am trying to Zoom way out in years. I am following the sample located here, http://forums.daypilot.org/Topic.aspx/454/how_to_achieve_the_zooming_feature_in_scheduler_co...
Answered: You should replace dpc.startDate = newDateTime; dpc.callBack2('Init'); with this: dpc.commandCallBack("goto", { "start": start }); In the server-side OnCommand handler, detect e.Command == "goto", se...
Answered: In the 7.1 release, it's possible to add custom "active areas" to the event. It's a rectangular area that is displayed when you move the mouse over the event. In order to place the area at the right ...
Answered: HeightSpec="Max" means the height will never be more than Height value (in pixels). You can try HeightSpec="Full". You can also set the initial scrollbar position using ScrollPositionHour property.
Answered: You can change the color of the background cells using BeforeCellRender event handler. You can change the cell CSS class using e.CssClass, you can also change the IsBusiness status using e.IsBusiness...
Answered: You can control the vertical scrollbar using HeightSpec property: http://www.daypilot.org/calendar-control-height-and-business-hours-heightspec.html
Answered: There are two possible approaches: 1. Check the new event against the database before saving it. For a simple scenario (i.e. no recurring events) you can use the same logic you use for selecting even...
Answered: You can use BeforeEventRender event handler: protected void DayPilotMonth1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.Month.BeforeEventRenderEventArgs e) { string status = (string) e.Dat...
Answered: You will need to join these two fields in the select command: http://stackoverflow.com/questions/700619/how-to-combine-date-from-one-field-with-time-from-another-field-ms-sql-server But I would recom...
Answered: You need to to include the .css file: <link type="text/css" href='Themes/scheduler_white.css' rel="stylesheet" /> Enable CssOnly and specify the class prefix: <DayPilot:DayPilotScheduler ... CssClass...