Active Questions
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
How to hide Demo
Hello, I have downloaded DayPilotLite-2.3.206 but when i used it It seem that it is populating "Demo" on left corner of calendar Ho to remove that tag Thanks Anand
How to show 22PM to 7AM as businesshours within a calender?
Answered: You can override IsBusiness status using BeforeCellRender event handler. This event is called for each calendar cell. You need to check the e.Start value and set e.IsBusiness as needed. See also: htt...
Context menu hover css not working in IE8 quirks mode
Answered: Thanks for the update. The hover effect is defined using the following classes (see Demo/Themes/themes.css):
.menu_main a span
{
display: block;
height: 20px;
line-height: 20px;
width: 15...
Printed Text Quality with Numerous Events (Month)
Hi all, I was curious if anyone has suggestions for improving the printed quality of a month control that has a number of events. The user exports the calendar as a PNG and prints it to a single page...
Scheduler Week view - CellDuration: 10080 bug?
When using the DayPilot Scheduler in view mode Weekly (CellDuration: 10080, CellGroupBy = GroupByEnum.Week), I get a javascript error on the next line of code: this.drawTimeHeaderCell=function($p,$W)...
Resource Tree from Database
I could not find any code in the forums building a tree from the database using id, parentid. (So I had to think myself :-( Here is how I did it. private void loadResources() { SqlDataAdapter da = ne...
External Drag & Drop in Calendar in DayPilot for ASP.NET MVC
Answered: Yes, it's supported. Please make sure you are using at least build 1.2.5352. A live demo: http://mvc.daypilot.org/sandbox/Calendar/ExternalDragDrop And also for the Scheduler: http://mvc.daypilot.org...
Event relationship
Answered: Steve, This is a nice feature and I'd like to include it in one of the future releases. The visual representation seems to be a bit more difficult to implement and that's why it's still in the queue.
How to span an event within business hours.
Answered: This should be implemented as an extra layer of logic. You should keep the main event data in the database separate from the visible chunks (shifts) that will be passed to DayPilot and displayed. Eac...