All Questions

Calendar.BeforeHeaderRenderEventArgs precision

Answered: 1. This has been changed recently. The BeforeHeaderRender is not called for the corner anymore. You can modify it directly using .CornerHtml property: DayPilotCalendar1.CornerHtml = DayPilotCalendar1...

Use Theme file and event height

Answered: The default CSS themes (white, green, transparent, etc.) and themes created using http://themes.daypilot.org should not affect the event dimensions. When adjusting the theme manually please remember ...

Create new Event

Answered: You can create a new event using a modal dialog that lets you enter the event details (name, start, end, etc.): http://doc.daypilot.org/month/event-creating/ See also the tutorials at http://code.day...

Refresh page after postback delete

Answered: You would have to do a manual refresh using commandCallBack(). See also here: http://doc.daypilot.org/scheduler/commandcallback/ But it is better to use dps.eventMenuClickCallBack() instead of PageMe...

Creating EventClick on a Dynamic Component Daypilot

Answered: All user actions (clicking, moving, resizing....) are disabled by default. You need to set EventClickHandling to either CallBack or PostBack in order to activate the server-side event handler. Exampl...

Scheduler getRow renamed to $68

Answered: This method was internal and is now hidden. You can use the following method to get information about a cell under certain position: var cell = dps.cells.findByPixels(120, 1)[0]; var start = cell.sta...

Move Event Handler

Answered: Sorry, I'm still not able to reproduce the problem. Please check also the MoveBy property (it determines the drag handlers): http://doc.daypilot.org/scheduler/event-drag-handlers/ > BTW,Is it possibl...

Error on Internet Explorer

Answered: It should be fixed now, please see also http://forums.daypilot.org/Topic.aspx/2084/daypilot-timesheet-on-internet-explorer Thanks for reporting the problem!

DayPilot Timesheet on Internet Explorer

Answered: It should be fixed now both in the online demo and in the sample project. Let me know if there is still any problem.

Snap to Grid

Answered: I have created a simple tutorial that demonstrates how to do this: http://code.daypilot.org/98349/annual-leave-booking-asp-net-c-vb-sql-server It is based on the current sandbox version of DayPilot (...

Grouping Support

Answered: > Layer Multiple events: Group calendar view for multiple resources. Two options are available: 1. Resources in columns (Calendar control) http://mvc.daypilot.org/demo/Calendar/Resources 2. Resources...

Use jQuery datePicker to select the date

Answered: As soon as you know the selected date, you should send it to the server using commandCallBack() method in order to change the date and load the new event set. See ASP.NET MVC/Example 1 here: http://d...

Event Description

Answered: You can customize the event HTML using BeforeEventRender event: http://doc.daypilot.org/calendar/event-customization/ It is also possible to display additional event details on hover using event Bubb...

How to add datatags to event bubble

i was trying to populate datatag fields in the event bubble but could not find any answer so i came up with my own hope it helps some one in future this is done server side when you hover above an ev...

How to show Event Calendar from jquery

Answered: Please see the doc for jQuery calendar plugin: http://doc.daypilot.org/calendar/jquery/ Your example would look like this: <link type="text/css" rel="stylesheet" href="themes/calendar_white.css" /> <...

getting the column id via context menu javascript

Answered: Here is an example of a context menu used for time range selection: <DayPilot:DayPilotMenu ID="DayPilotMenuSelection" runat="server" CssClassPrefix="menu_default"> <DayPilot:MenuItem Action="JavaScri...

DayPilot Bubble and iOS

Answered: Hi Jim: iOS is supported but the available gestures are limited. That's why it doesn't support all the interaction options that are possible on the desktop. On events, it supports two actions: tap (t...

Restrict User

Answered: You can customize the event properties so certain actions (moving, clicking, etc.) are disabled: http://doc.daypilot.org/calendar/event-customization/ You can also add visual hints on read-only statu...

Shoeing time only form 9 AM

Answered: In the Calendar, you can change the business hours using BusinessBeginsHour and BusinessEndsHour: http://doc.daypilot.org/calendar/business-hours/ You can also change the HeightSpec value to show ful...