Active Questions
Date Columns widths off on Calendar - version 6.6.2346.1
The column headers appear to be a couple of pixels short, which misaligns the heading and creates a gray box on the right side of the headers.
Alignment Issue with DayPilot Calendar Version : 6.4 SP1 in IE7
Answered: I think the compatibility mode is set in IE7 to run as IE6 browser. I had some problems as well with the calender layout (moved to the right). IE8 didn't have the problem. haven't tested it yet, but ...
Reccurence view
Answered: The first event is not considered a part of the series. That's why it can have any start and it's not counted towards the limit when Times() rule is used. See also: http://forums.daypilot.org/Topic.a...
Calendar renders wrong Recurrent Events
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...
Resource-Bubble for java scheduler
Answered: Erik, The resource bubble is now implemented in DayPilot Pro for Java. Example: Default.jsp
dps.resourceBubble = new DayPilot.Bubble();
DpsServlet.java
@Override
public void onResourceBubble(R...
How to Enable week-numbers in Scheduler?
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
...
e.value result in error
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 JavaScrip...
Error: App_Web_4wv7e-qt reference
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...
Scroll Bars not working Calendar Build 6.5.2332 from September 9, 2011
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...
Event Hover JS event handler
Answered: There is no way to do this at the moment. Manipulating the event div wouldn't be too safe anyway, you would have to clear the changes after the bubble is dismissed and this would require quite a piec...
Scheduler - HeightSpec.Parent100pct does not update layout when parent's height changes
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:...
Disable the clicks
Answered: putthebelow codein the page_load() and try... Schedular.FreeTimeClickHandling = DayPilot.Web.Ui.UserActionHandling.PostBack Schedular.EventClickHandling = DayPilot.Web.Ui.UserActionHandling.PostBack
Drop down for 'name' in calendar
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...
Export of Calendar does not show date in heading
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.
In TimeHeader how to add a new row ( column ) that describes the month, between the weeks and days row.
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...
ContextMenu Postback 6.5 SP1
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...
Scheduler Event bar is rendering one day less than the End date
Hi, I have my Scheduler with Cellduration set to 1440 (which is 1 day). And all my Event bars renders one day less than what's in the End_Date. I store the date in the DB as Date, not DateTime. How d...
Calendar generates OutOfMemoryException
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...
Daypilot Scheduler Zooming
Answered: This could happen for WeekStarts=Sunday. The week number calculation is based on ISO 8601 which uses Monday as the first day of week. The supplied Sunday belongs to a previous week according to the s...
Cell.HasAppointment
Answered: yes. protected override void OnBeforeEventRender(BeforeEventRenderArgs e) { if (Boolean.Parse(e.Tag["CheckedIn"]) == true) [..]