Active Questions
Export only the visible part
Hello, When I export there all year, but I love that there is only the visible part of the exported calendar. Thank you?
ViewState exception
Answered: Unfortunately I'm not able to reproduce the issue (v7.2). Please let me know if you still experience this problem (support@daypilot.org).
Event selecting programatically in DayPilotMonth
Answered: Since 7.1 SP4 it's possible to create an instance of this class by calling: EventInfo.Create(id) for regular events EventInto.CreateRecurring(masterId, start) for recurring events This will create an...
Scheduler control broken in IE8
Answered: The root of this problem is that the height of the parent control is too small. This can happen for number of reasons: Older browsers (e.g. IE7) don't support position:absolute, bottom:0px for stretc...
Set Focus on Y-Axis
Answered: On the server side, you can use ScrollY property. You will be able to calculate the resource Y if you know how many overlapping events are there in every row. If it's just one, it's not that hard. In...
Refresh DPC onClose of jQuery Dialog
Answered: You can request a refresh by calling
dpc.commandCallBack("refresh");
This will invoke Command event on the server side. You need to add a handler for Command event and reload the events there:
...
"A script on this page is causing IE to run slowly" error when I use DayPilot
Answered: The IE performance when loading a lot of events has been improved in the latest release (7.2): http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-2.html The event loading (parsing) has been ...
How long are events stored in ViewState
Answered: It's reset every time you call DataBind(). It only contains the latest event set loaded from DataSource. I would recommend reloading events from the database instead of storing them in the ViewState....
Active Area not working properly in IE
Hi, The Active Area javascript setting not working properly in IE. I tried the online sample http://www.daypilot.org/demo/Scheduler/ActiveAreas.aspx in IE 8 ( version: 8.0.7601.17514) and Google Chro...
Column for Aggregate/Calculated values in scheduler
Answered: At this moment it's only possible to add a new column on the left side of the main area (in addition to the column that you are already displaying). See also: http://www.daypilot.org/scheduler-row-he...
Sync / Integrate with other Calendars
Answered: Hi Stephanie, It's possible to generate an iCalendar file using dday.ical library (or another icalendar library): http://www.ddaysoftware.com/Pages/Projects/DDay.iCal/ A tutorial that will show how t...
How do I hook into when the user clicks a date in the Navigator?
Answered: You need to handle TimeRangeSelected event manually:
TimeRangeSelectedHandling = TimeRangeSelectedHandlingType.JavaScript,
TimeRangeSelectedJavaScript = "yourHandler(start, end);"
If you want to...
Can I preload the Scheduler to remove the delay in events appearing when scrolling?
Answered: You can disable the progressive event rendering by using the following switch in the config: DynamicEventRendering = DynamicEventRenderingType.Disabled It will behave like this demo (WebForms): http:...
side-by-side events
I am using daypilot month in order to set events. On a daily basis we have two events that need to be side by side (i.e. two events which are half as long as normal events side-by-side as opposed to ...
Problems with UpdatePanels
Answered: This bug is fixed now in build 7.2.2761. You can download it in the sandbox: http://www.daypilot.org/sandbox/ The fix will be included in the next release. Please let me know if there is still any pr...
A potentially dangerous Request.Form-Value was found from the Client
Answered: Now I got a solution to set the background. The solution is to set the rowheaders background in the css to inherit and the e.Background in the BeforeHeaderRenderEventArgs to the color.
Add CssClass to BeforeHeaderRenderEventArgs
I've noticed in the DayPilot.Web.Ui.Events.BeforeEventRenderEventArgs class as part of the DayPilotScheduler1_BeforeEventRender function there is a CssClass attribute which is extremely useful in sty...
DP Month Recurring Events Using Modal Window
Answered: The following menu item will open Edit.aspx page in a modal dialog :
<DayPilot:MenuItem Text="Open" Action="JavaScript" JavaScript="dialog().showUrl('Edit.aspx?id=' + e.value());" />
This is the ...
Scheduler Event Title Always Visible
Hoping someone out there can help answer if and how our request is possible. We are using the DP Pro Scheduler to show a multitude of events at the hourly level. Some events are only an hour, some ar...
How do I set the tag field when I create the event?
Answered: If you digg you shall find. Apparently you define what "tags" should be looked for in the row object. To define the tags i wrote this in the init-method: setDataTagFields("mytag1, mytag2"); Then: Row...