Answered: There are two options: 1. You can define the bubble HTML in BeforeEventRender event handler. This will store the bubble HTML with the event (it will be static). No server-side call will be required w...
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...
Answered: This looks like a bug. The ShowBaseTimeHeader will be deprecated in the next release (7.6). The time header rendering was changed significantly: 1. The time headers will be fully independent of the c...
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 ...
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...
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...
Answered: The e.DataItem is only available in BeforeEventRender on the server side. For additional data that need to be passed with the event through all its lifecycle you should use tag fields (*DataTagFields...
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...
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...
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...
Answered: The left cell was using valign="top" which doesn't work well anymore. It's now updated - can you please try the latest sandbox build (7.5.2989)? http://www.daypilot.org/sandbox/
Answered: You can set custom background color, HTML and CSS class for individual grid cells using BeforeCellRender event handler: http://doc.daypilot.org/scheduler/cell-customization/
Answered: This looks like a bug. The "null" text comes from CornerHtml property. You can use DayPilotScheduler1.CornerHtml = String.Empty in Page_Load as a workaround.
Answered: You can control the hour range using DayBeginsHour and DayEndsHour properties. See also: http://doc.daypilot.org/calendar/overnight-scheduling/ You should be able to combine it with HeightSpec as nee...
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!
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 (...
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...
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...
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...
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...
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" /> <...
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...
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...
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...
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...