Answered: This is indeed quite difficult at this moment. But maybe the Bubble could help here, although I understand that it's not exactly what you were looking for. http://www.daypilot.org/bubble.html The Bub...
Answered: You need to customize the EventRightClickJavaScript code to do both actions: EventRightClickJavaScript="select(e)" function select(e) { e.eventSelect(e); menu.show(e); } Where menu is the ClientObjec...
I've followed the tutorial and added an event handler and set event move handling like so: EventMoveHandling="CallBack" OnEventMove="DayPilotCalendar1_EventMove" but whenever I load the page with the...
Answered: You can try to clear the ASP.NET temporary files folder: http://codebetter.com/brendantompkins/2006/11/15/fix-for-asp-net-could-not-load-file-or-assembly-app_web-error/ See also here: http://forums.a...
Answered: Please check the following guide: http://kb.daypilot.org/101644/events-not-showing-up-in-the-scheduler/ The most important thing to check is that the resource id (Resource.Value) matches the resource...
Answered: Steve, This is a nice feature and I'd like to include it in one of the future releases. The visual representation seems to be a bit more difficult to implement and that's why it's still in the queue.
Answered: The JavaScript handling is a bit different in the Lite version. You should replace the code with something like this: EventClickJavaScript="alert({0});" The Lite edition doesn't use any JavaScript ob...
Question: Can the monthly/daily/weekly view be changed so that an entry on a calendar date reflects a drop down box instead of a free text box for 'name'? The data element in the EVENT database is ca...
I am unable to get the date to display in the heading. During DayPilotCalendar1_BeforeHeaderRender, e.InnerHTML shows the date, but does not render when exported to PNG.
Answered: It seems that this behavior is caused by the newly introduced HideFreeCells property which was not accessible and was always set to true. HideFreeCells="true" hides non-business hours (outside of Bus...
Answered: The week number will be displayed in the first header row if you use dps.cellGroupBy = 'Week'; You can always override the onBeforeTimeHeaderRender() to customize the header HTML: @Override public vo...
Hello, I am interested if anyone did something like this before: I am currently using a CellGroupBy="Week", so in the Header I have Weeks + Month and Days coresponding to it, but I would like to have...
Answered: As far as I can tell it behaves as specified. It might not be what you need, however. 1. It doesn't take the event end into account, i.e. it repeats the event based on its start, no matter when it ac...
Answered: You can use updateHeight() on the client side: dps.updateHeight(); See also: * http://api.daypilot.org/daypilot-scheduler-updateheight/ This only works correctly in build 6.6.2339 an later ( http://w...
Hi. I downloaded the new 6.5 SP1 version and noticed that my postbacks on contextmenues stopped working. Do I have to make som new settings to get it working or am I missing something. I am using web...
Answered: This should be implemented as an extra layer of logic. You should keep the main event data in the database separate from the visible chunks (shifts) that will be passed to DayPilot and displayed. Eac...
Answered: If the lessons were always inside a CellGroupBy unit (e.g. an hour), you could use smaller units for time cells (e.g. CellDuration=15) and hide some of them: http://www.daypilot.org/scheduler-hiding-...
Answered: I guess the problem is that the DataResourceField value doesn't match the Resource.Value. It must match exactly, i.e. the same case, no extra spaces, etc. See a general explanation for the Pro editio...
Answered: It's already available. See this demo page, Event 12: http://www.daypilot.org/demo/Month/ A snippet from Demo/Month/Default.aspx.cs: protected void DayPilotMonth1_BeforeEventRender(object sender, Day...
Answered: Hi again, I'm not sure if this is the correct way of doing it as it seems like quite a bit of coding to get at the answer! I've probably missed something very obvious along the way but at least this ...
Answered: It's now implemented in build 6.5.2331. See also: http://www.daypilot.org/daypilot-pro-6-5-sp1.html Just specify the image url using MenuItem.Image property. The image position can be adjusted using ...
Answered: There was a bug in weekly recurrence code. It has been completely rewritten in 6.4 SP2. http://www.daypilot.org/daypilot-pro-6-4-sp2.html It seems that you are using build 6.4.2251 (6.4 SP1). Could y...
Answered: This is a bug of the 6.5 release. It happens if the Resources collection is empty. It's fixed in the latest sandbox build. The fix will be included in the next release. See also: http://www.daypilot....
Answered: There is no way to do this at this moment. I will check if it will be possible to include it in one of the future releases. It seems that it could be relatively easy to implement.
Answered: The only option I can see is to try to create a .NET stored procedure and call the RecurrenceExpander from there. I haven't tried it, however.
Answered: The upper-left corner HTML can be set using BeforeResHeaderRender event: http://www.daypilot.org/scheduler-custom-resource-header-rendering.html