All Questions

Infinite scroll

Hi, How does infinite scrolling work? I found a demo where the feature works but when I try to apply it to our code there are problems with the scrollTo call. It does not scroll at the desired time. ...

DataTextField text with vbcrlf

Answered: You can provide custom HTML that will be used for event content using BeforeEventRender event handler: https://doc.daypilot.org/calendar/event-customization/ Your event handler could look like this (...

FirstDayOfWeek

Answered: The Lite version uses the first day of week that is read from the current Culture. It works automatically for ViewType="Week". You can also display custom number of days (Days property) starting at c...

Wanted to implement Day Pilot Calender control using Anguler JS

Answered: Please see the AngularJS tutorials available at code.daypilot.org: https://code.daypilot.org/tag/angularjs That could be a good start for your application. You can customize the event depending on it...

How to hide the Trail message popup in IIS SERVER?

Answered: The trial version displays a "DEMO" label and also a popup to remind you that you are using a version that is not licensed for production. If you want to deploy DayPilot as part of your application y...

How to not allow schedule on weekends

Answered: It's possible to the non-business hours in the Schedule using ShowNonBusiness property (it hides hours outside of BusinessBeginsHour and BusinessEndsHour and weekends): https://doc.daypilot.org/sched...

Scheduler Event backcolor Revert back after loading

Answered: If you add events using .events.add() you don't need to call .update() to apply the change. The Scheduler will be updated automatically. Also, calling .update() in every iteration of the loop is very...

events empty

Answered: It looks like you are calling the .update() method too much. The update() is performed asynchronously a multiple simultaneous calls may disrupt the display. It's not necessary to call .update() befor...

limitations trial version?

Answered: You can use the browser console to check if there is any error in the input data. Just type: dp.resources to see the resources array. The trial version will display 71 rows without any problem. The f...

Override Daypilot.min.js function

Answered: In case of the ASP.NET WebForms version the client-side library is embedded in the DLL and it's inserted into the page using internal ASP.NET mechanisms. As far as I can tell it's impossible to inser...

Scheduler ContextMenu Scrolling

Answered: Thank you for your answer. I've found a my solution putting the following code into css file: .menu_default_main {position: absolute; top: 0px; left: 450px; overflow: auto !important; z-index: 11; ma...