Active Questions
How to freeze the first column of the scheduler with the rowheader ?
Answered: Unfortunately, this is not possible in the Lite version. In the Pro version, the content is displayed inside a div with a scrollbars. The total width is set using Width property and the scrollbar is ...
Click and drag whole event?
Answered: This is controlled by the EventMoveMargin property. You can increase the value as needed. The default value is 5 (pixels).
Empty scheduler throws IndexOutOfRangeException
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....
Block Overlap Events
Answered: The client-side support is not yet available but it's in the wishlist. It could be included in one of the future releases.
Is it possible to drag and drop on an existing event.
Answered: It's not directly supported at this moment. However, it's possible to use one of the ajax libraries that support drag&drop and register the event div as a drop target using AfterEventRenderJavaScript...
Update Resource Columns during CallBack in DayPilotScheduler
Answered: It seems to work fine. I've modified the Demo/Scheduler/RowHeaderColumns.aspx.cs example as follows:
protected void DayPilotScheduler1_EventMove(object sender, DayPilot.Web.Ui.Events.EventMoveE...
Creating reports with SQL and recurrent appointments?
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.
Lose the line between columns in week view in IE8
I have an aspx page inside in Iframe. The day pilot control is set in a scrolling div on the .aspx page. The height spec is set to full I have button above the div which switch the day pilot from day...
How do i add an icon in the top left corner
Answered: The upper-left corner HTML can be set using BeforeResHeaderRender event: http://www.daypilot.org/scheduler-custom-resource-header-rendering.html
How to remove demo icon from DayPilotMonth calender
Answered: Buy it or use the open source version.
Non-resource resource parent
I'd like to make a feature request for daypilot for java. In my application Resources have parents, but a parent is not a bookable resource itself. For example: You are running a farm-holiday-resort....
How to use the horizontal scroll bar on the DayPilotCalendar?
Hi, I am trying to add a horizontal scroll bars on the calendar is it possible and if so, could you let me know how I could achieve this?
Tow deferent EventBackColor
-If I have more than one Event, let say 2in the same date. How can I give them two deferent colors., If it's possible. Thanks
clientState not working in daypilot calendar
Answered: The clientState value is only synchronized during calls that are coming from the DayPilot control (either PostBack or CallBack). That means it's not available on the server side when you push a Butto...
Scheduler - When does the day end?
Answered: It's now fixed in build 1.0.187. See also: http://java.daypilot.org/daypilot-pro-for-java-1-2/ Thanks for reporting the bug!
How to hide the Message Bar on Scheduler Control without clicking the X
Answered: You can call dps.hideMessage() using JavaScript. The message will be more configurable in one of the future releases. It will be possible to customize the appearance and timeout, both globally and in...
DayPilotNavigator don't show recurrence events
Answered: Unfortunately, it's not implemented yet. It's on the wishlist with a hight priority. However, I'm not sure if it will be available in the 6.5 release (http://www.daypilot.org/daypilot-pro-6-5.html).
ContextMenu - confirmdelete
Answered: It should look like this:
dps.contextMenu = new DayPilot.Menu([
{ text:"Delete",
onclick: function() {
if(confirm('Are you sure?')){
dps.eventMenu...