All Questions

DayPilotScheduler- Same Event Heights?

Answered: You can control the event overlap using EventStackingLineHeight property: https://doc.daypilot.org/scheduler/event-stacking-line-height/ You can use a value from 0 to 100 (percent). 100 is the defaul...

Unable to hide non business hours

Answered: In the Calendar control this functionality is not controlled by "showNonBusiness" but using heightSpec property. In fact, there are two options: 1. Use heightSpec: "BusinessHoursNoScroll" https://doc...

Month name

Answered: In the ASP.NET version, it uses the current locale to format the dates. In the demo, the locale is set to "en-us" in web.config: <configuration> <appSettings/> <system.web> <compilation debug="true" ...

Daypilot Modal window issue

Hello there I am using Daypilot Modal extender to show the popup screen when I click an event. I use bootstrap validation to validate my controls in my pop up window, so when I click submit button I ...

show days/month on top when scrolling down

Answered: Yes, this is possible - see the HeightSpec options (especially HeightSpec = "Fixed", "Parent100Pct" and "Max" values): https://doc.daypilot.org/scheduler/height/

Navigator selection days

Answered: It's in the wishlist but there is no specific time plan. There is an option to sponsor this feature if you'd like to set a fixed implementation date - please contact sales@daypilot.org if you'd like ...

Load resource data via ajax doesn't expand child nodes

Answered: You can expand the children by adding expanded: true property to the parent node: [{"id":11,"name":"Dublin - EIRE","children":[]},{"id":24,"name":"My Venue","children":[]},{"id":25,"name":"Graham's H...

Day border

Answered: One of the options is to add custom separators at the specified times (day starts): https://doc.daypilot.org/scheduler/separators/

Daypilot scheduler/Calender occupancy report

Answered: You can display the occupancy percentage in a special column of the row header: https://doc.daypilot.org/scheduler/row-header-columns/ This way you would be able to display occuppancy per room. You c...

Set a width of Specific Column and its data

Answered: Actually, I figured it out with using RowHeaderWidthAutoFit = "false" on ASP.NET and then scheduluer.HeaderColumns.Add(new RowHeaderColumn("NEW COLUMN", 200)) <= size of the column to be 200px

Select multi resources?!?

Answered: In the Lite edition, the Scheduler control is not available. In the Pro edition, you need to load the event as multiple records if you want to display it in multiple rows (one per row).

How to make events removable?

Answered: In the Lite (open-source) edition the built-in delete icon is not supported. In the Pro edition you can enable it using eventDeleteHandling property: dp.eventDeleteHandling = "Update"; See also: http...

Navigator for DayPilot Calendar with ViewType='Resources'

Answered: If you click a date in the Navigator and you have linked it to the main Calendar using BoundDayPilot property it will fire OnCommand event: @Html.DayPilotNavigator("dpn", new DayPilotNavigatorConfig ...

Event Deleting

Answered: Dan Letecky please look here there is an emergency

Day Pilot Event Calendar

I wants align my one (or) more events one below one associated with same timeslot using Event Calendar in Week view and Day view. How to achieve this, can you please guide me.

Divide day block/cell to more blocks/cells

Answered: It's possible to set custom cell size using the following settings: dp.scale = "CellDuration"; dp.cellDuration = 240; // 240 minutes = 4 hours See also: https://doc.daypilot.org/scheduler/time-cell-d...

Problem setting headerDateformat to pt-br

Answered: What version of DayPilot do you use? There was a bug in versions prior to build 1974. It should work fine since version 8.2: http://javascript.daypilot.org/daypilot-pro-for-javascript-8-2/ Let me kno...

Anything new on 100% height issue as described here:

Answered: DayPilot detects window size changes automatically and it will adjust the height of the Scheduler control to match the parent element height if HeightSpec is set to "Parent100Pct". The key here reall...