Active Questions
Calendar Memory Leak?
I've created a fairly simple page which just displays one calendar day with seven resource columns. There are probably an average of five events per resource, so there are roughly 35 events for the w...
How to knows all the default css property name of DayPilot Calendar?
Answered: All the classes mentioned in the documentation should be working fine: alldayevent (all-day event box) event (event box) cellbackground (time cell) colheader (column header cell) alldayheader (all-da...
Day Pilot Scheduler(Asp.Net) - When does the day end (Event Resize)?
Answered: This url shows a demo for the Java version (http://java.daypilot.org/): http://java.daypilot.org/demo/Scheduler/ There is a bug in version 1.1.183. It's already fixed in the latest sandbox build: htt...
Separator not accepting more than 2 arguments
Answered: Please check for possible typos, the method is there and this example should work fine:
// Red separator with 50% opacity placed at the current day with width equal to CellWidth, shown above events...
separator adding
Answered: You can do it in the .aspx file:
<DayPilot:DayPilotScheduler ID="DayPilotScheduler1" runat="server"
....
>
<Separators>
<DayPilot:Separator Color="green...
BeforeCellRenderEventArgs BackgroundColor rendering in IE6
Answered: Please check that you are setting correct CSS-style formatted color strings to e.BackgroundColor in BeforeCellRender. It doesn't accept Color object. Example:
protected void DayPilotScheduler1_...
Limit number of events per resource
Answered: Yes, this can be implemented as part of the server-side logic. However, there is no way to restrict time range selecting individually per resource on the client side.
Multiple header to Columns
Answered: At this moment, the Scheduler (http://www.daypilot.org/scheduler.html) is only able to show two rows in the time header (X axis). The size of the cells in the first row can be set using CellGroupBy p...
DayPilotCalenda Can you have double double and single click events?
I am not able to capture the double click event. When I double click it is calling the EventClick.
Daypilot scheduler lite used in mvc3 razor project
Hi! I am working on a school project ( Hotel booking system ) it is a MVC3 razor project, and i am trying to implement daypilot scheduler into it. i managed to get the resources (rooms) loaded from t...
ContextMenu Hover not working with JavaScript Action
Answered: aaaand I solved it by adding the following tag: <meta http-equiv="X-UA-Compatible" content="IE=8" /> The controls are a hit with the users in need of a calendar, and they're easy to work with. Thanks...
Day Pilot Calendar event selection on right click
Answered: You need to customize the EventRightClickJavaScript code to do both actions: EventRightClickJavaScript="select(e)"
function select(e) {
e.eventSelect(e);
menu.show(e);
}
Where menu is the ...
Grouping Rows
Answered: You should only add one row for this resource to the Resources collection: DayPilotScheduler2.Resources.Add("LJ10", "LJ10") You should be able to list the resources using an SQL query similar to this...
System.Data.SQLite.DLL is missing
Answered: This DLL is only required for some of the tutorials. http://www.daypilot.org/tutorials.html It's included in the Bin directory, not App_Data directory. You can also download it here: http://sqlite.ph...
Highlighting Today
Answered: The little blue line is called DurationBar and in Lite version you can set fixed color for all events by setting DurationBarColor property. You can also decide if you want to see it or not by setting...
invalid argument exception when unlocking machine
Hi, I keep getting an invalid argument exception when unlocking my machine if I have the scheduler open. The error happens in the following function: - this.updateHeight=function(){ if(this.nav.scrol...
JScript runtime error on postback when using an updatepanel
I am using an updatepanel around the DayPilot Scheduler. The scheduler performs a postback every minute to refresh the items on the schedule. If I am using the control i.e. scrolling, drilling throug...
Row header columns: span multiple rows
Is it possible to have a row header column span multiple rows. For instance: I have a building in which there are multiple rooms: building A room 1 room 2 building B room 1 room 2 room 3