Active Questions
demo
Answered: The easiest way to try it out is to download the project and run it on a local webserver with PHP enabled (e.g. Linux with Apache and PHP). Just copy the project to the web root. If you use MySQL you...
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: ...
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...
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...
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
Monthly Calendar Tutorial: SQL Server, UpdatePanel, ModalPopupExtender (ASP.NET, C#, VB.NET)
when i write this tutorials code i doesnt work and give me this error The name " UpdatePanelCalendar' does not exist in the current context MeetingRoom " how can I add UpdatePanelCalendar or what can...
Event Calendar and ModalPopupExtender
Answered: It's omitted from the tutorial text for brevity but you can find it in the downloadable project (in Default.aspx.cs). This is the source code:
private DataTable DbSelectEvents(DateTime start, DateT...
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...
Multiple resource lines for one resource
Answered: Yes, that's possible using the "Resource Tree" feature: https://doc.daypilot.org/scheduler/resource-tree/
DayPilot Scheduler throw Exception when choose weekend, Why!
Answered: This happens because the Scheduler doesn't have any timeline to display. It's an invalid setup. In the latest version it shouldn't throw the exception anymore - it will display an empty scheduler. Wh...
Obtain args.div in Scheduler's onEventDoubleClicked() event handler
(v.8.2 SP10) I am currently calling the Bubble's showHtml() method upon event double-click in the Scheduler. Is there a way to obtain the args.div like it is in onEventClicked()? It doesn't appear to...
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...
Cross-hair and time range selecting Firefox bug
Answered: Hi, This version (6.7) is more than 4 years old and it's not supported anymore. I recommend upgrading to the latest version (8.2).
Calendar: Only Show Business Hours and be Dynamically resizable - how to do both?
Answered: You can use DayBeginsHour and DayEndsHour in combination with HeightSpec="Parent100Pct". See also: http://forums.daypilot.org/Topic.aspx/3391/daypilotcalendar-businessbeginshour-and-businessendshour-...
DayPilotCalender - css Styling -- Overlap of "White" area over its container
Hi Dan and Team In a previous posting: https://forums.daypilot.org/Topic.aspx/3360/css-styling-calendar-and-scheduler-daypilot-controls I asked about styling of the calendar and scheduler controls......
Desktop app
Answered: Yes, it's possible. You'll need to replace the browser-server communication with direct API calls. 1. For calling JavaScript functions from the WebForms application use WebBrowser.Document.InvokeScri...