Active Questions
AM/PM Incorrect on Event Header with "Clock12Hours" Setting
Answered: This bug is fixed now in the latest codebase. The fix will be included in the next release. Thanks for reporting the issue!
Disable cell selection
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...
IE does not show correct BackgroundColor from BeforeEventRender
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...
I got an error .. " Unable to convert '' (from DataStartField column) to DateTime."
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:
...
Is there any way to select over an exisiting block?
Answered: You can adjust the row height using RowMarginBottom and RowMinHeight properties: http://www.daypilot.org/scheduler-row-height.html
NavigateURL not opening in a new window
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
Hide hours in schuduler mode
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, and...
DayPilotScheduler - Name of the event
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...
Use Duration Bar as "Percent Complete"
Answered: It's now implemented in the latest sandbox build (2662). See here: http://www.daypilot.org/sandbox/Scheduler/PercentComplete.aspx Use DurationBarMode = "PercentComplete" and e.PercentComplete = 50; i...
ASP.Net MVC3 -- How to update "StartDate" field from jQuery DatePicker control?
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 ==...
How to Zoom out to year(s)
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...
DayPilot Scheduler doesn't repaint itself after an AJAX post because Telerik RadAjaxPanel.
Answered: Drawing the control in an UpdatePanel requires special handling. In case of ASP.NET AJAX (standard part of ASP.NET since v3.5) DayPilot detects the presence of the library uses its special methods fo...
Customize the Event Bubble style
Answered: Since 7.0 release, it is possible to switch the Bubble to CssOnly mode. The CssOnly mode doesn't use any inline styles (other than position-related). You can apply a custom theme using CssClassPrefix...
Vertical Scroll
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.
Scheduler event with milestones
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 ...
Drag & Drop Item - Scheduler - Non-business days
This question is regarding the "Scheduler" app. I've created an Item which spans for 10 days. The moment I drag this item onto the Scheduler, the item occupies 10 days from the drop point. (Dropped t...
changing the culture & UICulture of the scheduler control?
Hello, Is there a way to change the culture and UICulture of the sechedular? I need to use my culture's Calendar "Hijri Calendar"? thanks.
Calendar - Weekend different color
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...
Howto use a theme
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 ...