search envelope-o feed check
Home Unanswered Active Tags New Question

Active Questions

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; ...

How to make data refresh when selecting different week on Navigator?

Answered: You need to reload the data source in Command event handler (where you change the dates according to the selected date received from the Navigator). protected void DayPilotScheduler1_Command(object...

Navigator month selected

I have a DayPilotNavigator hooked up to a DayPilotMonth control that's displaying a month. When I select a new month from the navigator, the calendar is updating as expected. But, I also have a liter...

IE 8 + 11 Problem: No Events

Answered: It looks like the problem is the timeline. As far as I can see the time header doesn't include any cells. You can check whether this is a display-only issue by checking dps.itline array in the consol...

How to highlight entire selected month of Navigator

Answered: You can set the mode using SelectMode property: http://doc.daypilot.org/navigator/select-mode/

2013 Demo gets an error

Answered: It's fixed in the latest release (7.9 SP3): http://mvc.daypilot.org/daypilot-pro-for-asp-net-mvc-7-9-sp3/ The medium trust level setting is now removed from web.config: <trust level="Medium"/>

How to show the short date m/d in the week and month view

Answered: You can define the date format using TimeHeaders: http://doc.daypilot.org/scheduler/time-header-rows/ And you can also customize the time header HTML using BeforeTimeHeaderRender: http://doc.daypilot...

Events can't span more than one week

I'm running into a problem with events that span through one week into the next. Using your online demo, create an event on a Tuesday and resize it to span to Friday. Next, move the event so the star...

Resource Header Click

Answered: After further tests, I found that there is no problem with the Resource Header Click if I use Google Chrome instead of IE8 as the browser. So, it seems that ResourceHeaderClick event is not supported...

Different Colours for events in Scheduler

Answered: Something like this works in c#: protected override void OnBeforeEventRender(BeforeEventRenderArgs e) { if (Boolean.Parse(e.Tag["CheckedIn"])) e.BackgroundColor = "#9FF59F"; if (Boolean.Parse(e.Tag["...

Last cell has no right border.

Answered: It's now fixed in the latest sandbox build (7.9.1384): http://javascript.daypilot.org/sandbox/scheduler/ An official SP release will be available early next week.
Previous Questions 2941-2960 of 5201 Next