All Questions

Angular 5 Calendar Custom View

Answered: It's possible to generate a custom set of days when you switch the Calendar to Resources view and fill the "columns" array manually. A JavaScript example: dp.viewType = "Resources"; dp.columns = []; ...

IE 8 compatibility

Answered: Unfortunately, IE8 is not supported. Microsoft stopped supporting IE8 in January 2016 and so did we. For the list of supported browsers please see the Compatibility page: https://aspnet.daypilot.org/...

Scheduler row filter

Answered: Please take a look at this tutorial: https://code.daypilot.org/97960/html5-scheduler-hiding-rows-without-events You'll need to adjust the logic in onRowFilter event handler to use your criteria.

Events Not Showing in Calendar

I am loading both the Resources and the Events from SQL Server and already had this working in the Scheduler control. When binding in the Page_Load for the Calendar control, I have verified that data...

Undefined, Events Do not load on Mobile IOS Android

I've tried the example code at https://code.daypilot.org/84763/html5-scheduler-for-touch-devices-ipad-android-php-javascript It works perfectly on desktop, however on IOS and Android (regardless of m...

How to set Cells/Columns in View vs. Scroll

Answered: By default the Scheduler width is set to 100% - that means it will change for different browser window widths. The auto cell width mode ( https://doc.daypilot.org/scheduler/auto-cell-width/ ) calcula...

Controls in resource columns

Answered: Unfortunately not directly. You might be able to generate HTML for your ASP.NET controls using RenderControl() and insert the result into the column cells using BeforeResHeaderRender: https://harouny...

Freeze Rows

Answered: Unfortunately data row freezing is not supported at the moment.

Month view for Daypilot calendar control in Angular4

Answered: There is a special component available for the monthly calendar. See the docs: https://doc.daypilot.org/month/angular/ A quick start Angular 4 monthly calendar project: https://code.daypilot.org/5778...

can i change my asp.net pages to mobile friendly

Answered: The Scheduler supports touch devices. Please see the following docs page: https://doc.daypilot.org/scheduler/touch-devices/ In the default configuration, it supports event creating, event moving (tap...

Non-passive event listener

Answered: Please see the following docs topic for Scheduler scrolling performance tuning options: https://doc.daypilot.org/scheduler/scrolling-performance/ It's necessary to keep the total DOM size as small as...

Sales Questions

Answered: Hi Jainik, Please check your mailbox, I've sent you an email.

setScrollY in event scheduler jquery

Answered: The initial scrollbar position is set to the hour of day defined using businessBeginsHour. You can also set a custom position using scrollToHour() method: https://api.daypilot.org/daypilot-calendar-s...

Scheduler Resource Tree flat hierarchy

Hi, Is there a way for Scheduler to accept a Resource Tree in the form of a flat tree hierarchy instead of a nested hierarchy? Like this: [ { resourceID: 1, parentID: undefined }, { resourceID: 2, pa...

Event Creation

Answered: The latest version of DayPilot Lite exposes "start" and "end" variables (DayPilot.Date object). The string replacements ("{0}") are no longer applicable. You can use the following TimeRangeSelectedJa...

How to disable daypilot popup

Answered: The modal popup is displayed by the default AJAX error handler (*AjaxErrorJavaScript* property): AjaxErrorJavaScript="if (DayPilot.Modal) { new DayPilot.Modal().showHtml(args.request.responseText); }...