Active Questions
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...
Get a listing of events on a specific day?
How would we do this? We have tried just pulling the date from the database, but because of the recurrence string, etc we cannot get the correct items. There are always extra when an item is deleted ...
How do i use update panel for DayView
Hi I'm trying to use daypilot lite, to dispaly events on the calender and if the selected date changes..it should bind the data for that date..But it is not working.. Any help appreciated <div style=...
RecurrenceExpander.Expand Sort?
We are using RecurrenceExpander.Expand to show the upcoming sessions of a recurring class as a list of dates. If a single occurrence is moved that new occurrence date shows up in the middle of other ...
Change mouse icon to hand on mouse over of monthview
Answered: At this moment it's hardcoded. You would need to change it in the source code.
Delete Events in DP Month With Recurring Events
DP 7.1.2695 DP Month I'm running into trouble trying to delete events in a Month cal with recurrence support. How can I call a delete/remove function from JavaScript? Calling Delete from a DP Menu it...
How to Enable the Saturday & Sunday in DayPilot Pro 7.1.2741
i'm using DayPilot Pro 7.1.2741 Trial,it will shows only Monday to Friday. I want saturday and sunday also,so pls help how to enable the days....?
Scheduler add ResourceColumn programmatically
Hi, I'm using the scheduler and i would like to add programmatically ResourceColumn. My sample code is: DataTable dt = dl.SelectRooms(); DayPilotScheduler1.Resources.Clear(); int i = 0; foreach (Data...