Active Questions
DayPilotNavigator
Answered: The horizontal mode is supported since 7.3 release: ASP.NET WebForms http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-3.html ASP.NET MVC http://mvc.daypilot.org/daypilot-pro-for-asp-net-mv...
MVC Razor Tutorials
Answered: For ASP.NET MVC tutorial, please see http://code.daypilot.org, especially http://code.daypilot.org/tag/mvc
How to add custom data to event?
Answered: Event customization was not supported in the Lite version until 3.1 release. http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-3-1.html In 3.1 and later versions you can use BeforeEventRende...
Crosshairs prevent EventSelectJavaScript and TimeRangeSelectedJavaScript from firing in IOS6
Answered: Since 7.3 release DayPilot should be compatible with iOS 6. See also the release notes for supported actions (EventClick is supported): http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-3.h...
Bug in Calendar withTimeHeaderCellDuration?
Answered: The TimeHeaderCellDuration only accepts values that divide 60 without a remainder. There is a check missing, 40 should not be allowed. If you want to show custom time slots I recommend using the mapp...
How do I change the colours of events in the month calendar depending on event type? (CSS Only)
Answered: You can change this the scheduler "BeforeEventRender" event Here I advise you to create your own layout, using labels, divs, ... this can be done using the "e.tag" values you get from your event. Onc...
DayPilot Month show bubble when click
Answered: You can use EventClickJavaScript="bubble.showEvent(e, true)", where "bubble" is the value of DayPilotBubble.ClientObjectName.
Why does Calendar re-render after TimeRangeSelected event fires?
Answered: If you use TimeRangeSelectedHandling="JavaScript" it will only execute the the JavaScript defined in TimeRangeSelectedJavaScript (onTimeRangeSelected on the client side). The server-side TimeRangeSel...
Scheduler and StateServer
Answered: The serialization problems related to StateServer have been fixed in 7.3 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-3.html
Scheduler / CSS / Event Background Colours
Answered: This is caused by the CSS theme definition. Some of the themes (white, green) use a gradient background which is defined using "background" property. The e.BackgroundColor set in BeforeEventRender is...
Change height
Answered: The control height is calculated automatically from the individual rows. The minimal row height is set using MinCellHeight property. In the row stacking mode (EventStackingMode="Row") the row height ...
Cell Duration mis-alignment
Answered: This looks like an interference with a global CSS. Try to limit the global styles so they don't apply to the div with DayPilot. Check especially table and td styles in the global stylesheet.
Limit displayed weeks in Month calendar...
Answered: This is possible if you set viewType to "Weeks" and weeks to 3:
dpm.viewType = "Weeks";
dpm.weeks = 3;
AfterRender-Event MVC Calendar
Answered: Ok, I've found a solution. I overwrite the function in the document.ready. Example: $(document).ready(function () { dpCalendar.afterRender = function () { afterRenderCallback(); } });
Text Wrap inside Scdedular Conrol event.
Hi i am using schedular control, I want to wrap the text inside the event in case event duration is small. Is it Possible? if yes how can i do that? I found this is possible with calender control but...
Image Export DayPilot Scheduler
Answered: I've got. The width should be 100% and not expressed in px
Daypilot Month Bubble on Click?
Answered: You can use the following settings:
<DayPilot:DayPilotMonth
...
EventClickHandling="JavaScript"
EventClickJavaScript="bubble.showEvent(e)"
...
/>
<DayPilot:DayPilotBubble
...
...
DayPilot Scheduler multiple resources binding
I''m new to Daypilot scheduler. please let me know how to add multiple resources with different resource types and binding those with timeline. I can add only one id reference in following propeties ...
Agenda / Upcoming events list
Hi, Does the DayPilot calendar allow for creation of an Agenda, similar to the one in Google calendar? I'm really just looking for a list of upcoming events with the option to include my own text/col...