Active Questions
Adding resources breaks cellWidthSpec="Auto"
I have a DayPilot scheduler on my app. When I set up the component originally, it is set with cellWidthSpec="Auto" and everything is set fine. I later retrieve my resources via Ajax and set them into...
Text Margin for Time
Answered: This property (EventTextLeftIndent) is only used when CssOnly is set to false. The position of the time text is fixed and can't be changed. The solution would be to switch to CssOnly = true and add t...
select date on time header...
i want to select different dates on each cell on time header.. how can i do this
In Month view, events longer than one week (8 days+) only display on the last week row.
Answered: This issue is now fixed in the new 1.2 release: http://javascript.daypilot.org/daypilot-lite-for-javascript-1-2/ Let me know if there is any problem.
onCellClick() or onCellDoubleClick() methods Event Calendar Pro javascript
Answered: If you click a cell TimeRangeSelect/TimeRangeSelected event will be fired: http://api.daypilot.org/daypilot-scheduler-ontimerangeselect/ http://api.daypilot.org/daypilot-scheduler-ontimerangeselected...
Modifying the args.cell.start, args.cell.end properties
Answered: Unfortunately the cell duration must be fixed for the whole day in the Calendar. In the Scheduler you can create a custom timeline that will be non-linear: http://doc.daypilot.org/scheduler/timeline/
TimerangeSelection on IPad
We have updated our MVC Calendar to version 7.9.5745.0 and have now problems with the TimeRangeSelection on iPad. Since the update, a single touch on a cell doesnt create a Selection. We have to Touc...
CellDuration in daypilot lite calendar to be 30 miniutes
How to show time intervals in daypilot lite Calendar to be like this 9 9.30 10 10.30 i tried to put cellduration=30 in calendare lite and it didn't work? is it supported on lite or removed? and how t...
Is horizontal scroll bar available with event calendar(all view types) control
Answered: Yes, you can use fixed column width: http://doc.daypilot.org/calendar/fixed-column-width/
The timeHeaderCellDuration property does not produce specified time interval cells
Answered: This issue is now fixed in the latest build (7.9.1426). The jsfiddle now works fine. You can customize the time header HTML using onBeforeTimeHeaderRender: http://doc.daypilot.org/calendar/time-heade...
Switching event calendar(javascript) from 'Resources' and 'Days'/'Week' not updating the headers
Answered: It's now fixed in the latest build (7.9.1428). Just note that .init() is called automatically from the jQuery plugin. The second call to .init() is ignored. This means the following part of code has ...
Uncaught TypeError: undefined is not a function error while initializing daypilot
Answered: http://geeksprogrammings.blogspot.com/2015/01/Uncaught-TypeError-undefined-is-not-a-function.html Fnally I found a solution to the error . this link provided me explanation of why and what of this er...
Excel like inline edit
Answered: Inline editing of existing events is supported: http://doc.daypilot.org/scheduler/inline-event-editing/ You can also create a new event and immediately start inline editing. See the following example...
Javascript Scheduler Rows Auto Height
Answered: Unfortunately, it's not possible to stretch the row height automatically because it's based on the event box height and the number of overlapping events. However, it's possible to use heightSpec = "M...
Access to HttpContext User Name in call back handler
Answered: You can access the controller using Controller property in the backend class:
public class SchedulerController : Controller
{
public ActionResult Backend()
{
return new Dps().CallBa...
Multiple timezone view of Scheduler
Answered: Provided that all dates are GMT you can add a secondary time header that will display another time zone. Just override onBeforeTimeHeaderRender and update the HTML as needed. The limitation is that t...
Right clicking context menu on mobile devices
Answered: Please take a look at this tutorial, it shows how to configure the touch behavior (you need to set it on the Calendar control, not the menu control): http://code.daypilot.org/65794/html5-event-calend...
Scheduler - Highlight Resource Start/End Dates
Answered: Can you please try to update to the latest DayPilot Pro version? In 7.9 SP5 and prior releases there was a bug that ignored custom cell properties in all but the first row. See also here - see "[Sche...
DayPilot:DayPilotScheduler bug?
Answered: You need to modify the event handler as follows:
protected void DayPilotScheduler1_BeforeResHeaderRender(object sender, BeforeResHeaderRenderEventArgs e)
{
DataItemWrapper task = e.DataItem;
...