Active Questions
Scheduler Hide Event Times
Answered: The latest sandbox build supports ShowEventStartEnd property with a default value set to false: http://www.daypilot.org/sandbox/Scheduler/ That means the event times are no longer added by default. Y...
The .net Calendar Not Updating DayPilotCalendar?
I am attempting to get a basic calendar up and running Everything seems to be working with the exception of the .NET Calender NOT being able to change the date of the DayPilotCalendar. I followed the...
Copy/Paste
Answered: Brandon, It's already possible. Please see the following guide: http://kb.daypilot.org/46975/how-to-implement-copy--paste-in-the-calendar/
source does not compile
Answered: It's now fixed in the latest release: http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-3-1-sp2.html
Header of Scheduler
Answered: Please see here, this feature is new in DayPilot Pro for ASP.NET WebForms 6.9: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-6-9.html
Click on Weekoff days
Hi, I have implemented Day Pilot Control in my application. Day Pilot control is maintaining saturday/sunday automatically and shows gray color for that. Is there any property by which i can disable ...
Refresh single scheduler event from javascript
Answered: Of course I found the answer 10 minutes after posting: use commandCallBack() to initiate the refresh
DPM ContextMenuClientName not working properly
Answered: It's now fixed in build 1.6.5405. Thanks Brandon!
Events' times not matching placement on dpc
Answered: This turned out to be a bug in StartDate property handling. Setting this property to a DateTime value that included time during a callback confused the calculations. It's now fixed in the code base (...
Resize a calendar event from JavaScript
Answered: It's now possible to modify the events on the client side and send the update to the server using the Notify model: http://www.daypilot.org/scheduler-client-side-event-operations.html
Select all row with Time Range Selection
Answered: Unfortunately, this is not possible at this moment.
Choosing which ContextMenu to use
Answered: Yes, this is the correct way. You should set a default menu using ContextMenu. In this case it's either "menu_priveledged_user" or "menu_disallow". Then you should override this default value using O...
Total TextBox or Label at the end of each resource line in Scheduler
Hi Dan, I was wondering whether there is a way to add a total box on each resource line in the Scheduler? Absolutely amazing system, I envy your knowledge :o)
Hide Calendar Hours when exporting to image
Answered: It looks like a bug. Please let me check it. As a workaround, you should be able to copy a portion of the result image (DayPilotCalendar.Export()) using this Graphics.DrawImage() overload: http://msd...
How to wrap detail text on Calendar Control?
Answered: In the Calendar control (http://www.daypilot.org/calendar.html) the text should be wrapped automatically. You can force a new line by inserting "<br/>" (use e.InnerHTML in BeforeEventRender event han...
Custom event rendering for VB
Answered: Martyn, Please see here: http://www.daypilot.org/scheduler-tutorial-hotel.html Section "Event colors indicating the reservation phase".
A control with ID 'UpdateTimer' could not be found for the trigger in UpdatePanel 'TimedPanel'.
Answered: This is not enough information to give you an answer. It depends on the location of the UpdateTimer. A few hints: 1. Please see: http://stackoverflow.com/questions/6667398/a-control-with-id-could-not...
TutorialDayPilotMonthSql.zip
Answered: As per our discussion, it seems that the issue has been resolved. I'm not able to reproduce this issue either.
e.Value not passed on first eventclick after page load
Answered: It looks like the issue was the UpdatePanel for some reason... Any thoughts why? Once I removed that and the DayPilot Month control wasn't wrapped inside it, the postback e.Value was passed through c...
How to add resources columns to the calendar
Answered: Hi Martyn, In the Calendar control (http://www.daypilot.org/calendar.html) you need to use Columns property:
DayPilotCalendar.Columns.Add(name, id);
You can also define custom date for each colum...