Active Questions
Rowspan undefined with collapsed resources and multiple columns
		
		Answered: This should be already fixed in the latest version (which is now 2022.3.5384). Please let me know if the problem persists.
	
	
	
	Move Row Header Column to Right
		
		Answered: Unfortunately, there is no elegant way to display the row headers on the right side at the moment. There is a tutorial that shows how to implement your option 2, but it's just a workaround: https://c...
	
	
	
	DB Connection data not showing at index
		
		Answered: I recommend checking the HTTP calls to the API (especially work_order_resources.php and work_order_list.php) in the browser developer console (Network tab). Make sure that the response includes the c...
	
	
	
	Scheduler ResourceHeaderClickJavaScript
		
		Answered: I recommend using RowClickJavaScript instead. It handles the JavaScript onRowClick event: https://api.daypilot.org/daypilot-scheduler-onrowclick/ You can access the resource id using args.row.id ther...
	
	
	
	Event test
		
		Answered: The event text gets HTML-encoded (as a protection against XSS attacks) and then it is treated as HTML. That means ASCII line breaks will be ignored. If you need to insert a line break, you'll have to...
	
	
	
	Add line break in text in Event
		
		Answered: Mike, Please see my answer here: https://forums.daypilot.org/question/5750/event-test Please let me know if there is any problem.
	
	
	
	room fields update
		
		Answered: You can activate a context menu for the Scheduler row headers: https://doc.daypilot.org/scheduler/row-header-context-menu/ Or you can add an action icon to the header: https://doc.daypilot.org/schedu...
	
	
	
	How to convert <DaypilotNavigator/> into icon ?
		
		Answered: Here you can find a JavaScript demo that binds a DatePicker popup to a specified target (a <span> element in this case): https://javascript.daypilot.org/demo/calendar/datepicker.html
	
	
	
	MySQL cannot use just SQlite can use only why?
		
		Answered: In order to switch to MySQL please follow the instructions at the bottom of the article (a section called "Database (MySQL, SQLite)"). You need to edit _db.php and _mysql.php files.
	
	
	
	How to show and hide the daypilot navigator ?
		
		Answered: You can use the show() and hide() methods of the DayPilot.Navigator instance: https://api.daypilot.org/daypilot-navigator-show/ https://api.daypilot.org/daypilot-navigator-hide/
	
	
	
	events are not coming properly in the cell?
		
		Answered: The horizontal position of an event is determined by its "start" and "end" values. Concurrent events stack vertically. To show events side by side you would have to change their start/end value accor...
	
	
	
	How to get the text from upper left corner in the cell?
		
		Answered: The default theme uses "display: flex" and "align-items: center" to center the Scheduler event content vertically. You can override it using the following CSS: 
.scheduler_default_event_inner {
  a...
	
	
	
	How i can add icon with text in context menu?
		
		Answered: Please take a look at the following documentation page for an example: https://doc.daypilot.org/menu/images/
	
	
	
	image is not coming properly in Context menu.
		
		Answered: When using the default theme, there is a space for a 16x16 pixel icon on the left side: https://doc.daypilot.org/menu/images/ In your screenshot, this space is not available. It looks like you might ...
	
	
	
	How can i add multiple events in single cell?
		
		Answered: Each event is displayed at a location determined by its start, end and resource id. If you want to display multiple events in the same cell, use the same "start", "end", and "resource" values.
	
	
	
	How to show allday Event in Schedular
		
		Answered: Unfortunately, all-day events are only supported in the Pro version of the calendar: https://doc.daypilot.org/calendar/all-day-events/
	
	
	
	Dragging events out of loaded date range leads to errors or losing duration
Hi everyone, I have trouble with my Scheduler when dragging events out of the loaded time range using infinite scrolling. So I'm starting with a range of multiple months around "today" loaded and dra...
	
	
	
	How to provide the header for scheduler and how to change the today's cell color?
		
		Answered: Instead of using the Scheduler time header to display the navigation, it's better to create your own toolbar and place it above the Scheduler. To learn how to implement the next/previous/today button...
	
	
	
	daypilot all - functions not working
		
		Answered: I resolved this. I was sending the 'data' object via jQuery $.post and it was failing. Re-populating the object sent using $.post using: newStart: args.newStart.toString(), newEnd: args.newEnd.toStri...
	
	
	
	Uncaught ReferenceError: module is not defined
		
		Answered: If you want to include the library directly using <script> element you need to download the zip package and include daypilot-all.min.js file instead of using NPM: Pro version: https://javascript.dayp...