All Questions

Calendar stuck on Loading

when i open the calendar on my laptop (chrome) everything is OK. but when users try to open the pag on their android phone, events do not load and loading label is shown. I connected my laptop to the...

How to remove DEMO MARK ?

Answered: When you purchase DayPilot Pro for ASP.NET WebForm you receive a download link to a full version of the package. You need to use DayPilot.dll that was included in the full package download. Sometimes...

headers are shifted

Hi. I'm new to using Calendar (lite) and when I run the web app in the IE 11 - headers with the dates are shifted vs the data. It shows data for the next date and headers and columns are not aligned ...

how-to-read-anr-write-tags (Continued)...

Answered: Thanks for pointing this out. The ASP.NET version stores the tags in a slightly different way. Using e.tag("name") is the universal way to read the tag values. The JavaScript version requires the eve...

Send Email Reminders

Answered: You need to load the events from the database and expand them using RecurrenceExpander class. You can do this outside of a page and outside of the ASP.NET context - e.g. in a standalone application r...

onBeforeCellRender for a ressource on a day

Answered: Let's say you have a list of days to be highlighted: var days = ["2016-01-01", "2016-05-01"]; You can use the following code to highlight these days in the Scheduler: dp.onBeforeCellRender = function...

Where is the new event details stored?

Answered: In the ASP.NET version the events are loaded from the DataSource property when you call DataBind(). If you set StoreEventsInViewState to true they will be stored temporarily in the ViewState but it i...

Rows Filtration in Scheduler

Answered: It's quite possible that the version you are using doesn't support row filtering. As you can see in the documentation ( https://doc.daypilot.org/scheduler/row-filtering/ ) the row filtering is suppor...

Please would you provide some examples of supported scenarios?

Answered: Dave, Generally, what you find in the documentation and the tutorials ( http://code.daypilot.org/ ) are supported scenarios. We are discussing mainly the recurrence - and here the supported scenario ...

Planning to Purchase DayPilot Pro for ASP.NET MVC (OEM Start)

Answered: It looks like you might be referring to this question: http://forums.daypilot.org/Topic.aspx/3066/increase-cell-width-based-on-number-of-events I understand the requirement but I'm afraid there is no...

the calendar has an issue in ie8 mode

Answered: This issue should be fixed now in the latest build (8.1.3504). You can download it in the sandbox: http://www.daypilot.org/sandbox/ Just note that DayPilot is not supported on IE8 and previous IE ver...

Resource start time format in scheduler

Answered: When you specify the data source for the Gantt columns it will take the source data and display them using the default format. In case of DateTime fields, it is DateTime.ToString() method. This metho...

Multi-Line Events

Answered: By default, the Scheduler prevents the event text from wrapping. You can change it using eventTextWrappingEnabled property: dp.eventTextWrappingEnabled = true; You can also set custom event height if...

Scheduler under Angular

Answered: This turned out to be a bug of the latest version - since the introduction of "events" attribute it fails to recognize "daypilot-events". It's now fixed in the latest sandbox build (8.2.2072): http:/...

RequireJS

Answered: Sorry, my mistake I've got it loading now.

OnEventResized

Answered: In ASP.NET WebForms, only one event handler is fired for every event. You can specify it using EventResizeHandling. It can be "JavaScript", "CallBack", "PostBack", "Notify", etc. onEventResized is on...