Active Questions
Event move
Hi While moving the event,event is resizing.How to prevent resizing while moving the event Thanks
	
	
	
	AreaCollection in Calendar
		
		Answered: The active areas are supported in Calendar cells but only with fixed positioning using area.Left/Right/Top/Bottom. Positioning using area.Start and area.End is not supported at this moment.
	
	
	
	Want to show Cell in color
I want to apply color for cell if respective date is having more than 1 count...I am using now dp.onBeforeCellRender() for the same. But its not very usefull for me.
	
	
	
	TimeRangeSelect shadow backcolor
How to customize the background-color of the timeRange on selecting?.
	
	
	
	Getting Error Msg
		
		Answered: thanks for your reply.. currently we are using IE 10 will check the code and get back..
	
	
	
	Incorrect position of bubble on event mouse hover in scheduler
		
		Answered: Thanks! It should be fixed now in the latest sandbox build (8.4.3072): https://javascript.daypilot.org/sandbox/ Let me know if there is any problem.
	
	
	
	modal dialog
		
		Answered: You need to add the buttons yourself. The showHtml() doesn't add anything to the HTML and only displays what you supply. You can close the dialog by calling modal.close() method.
	
	
	
	Add or remove doctors
		
		Answered: Management of doctors is not implemented in this tutorial. The doctor data is stored in the database, in a table called "doctor": 
CREATE TABLE doctor (
    doctor_id   INTEGER       PRIMARY KEY AU...
	
	
	
	Why is some of the Calendar bar another color, sometimes?
		
		Answered: By default, the event boxes are aligned with the grid (useBoxes="Always", see also https://doc.daypilot.org/calendar/exact-event-duration/). The duration bar is filled with the lighter color. The dar...
	
	
	
	What determines if an Event is shown?
		
		Answered: Each column uses two key properties: id start The basic rule is that event.start must be within the specified day (column.start) and the event.resource must match the column id (column.id). Plus: 1. ...
	
	
	
	Following Event Editing example, but id is incorrect
		
		Answered: I solved this. The documentation is incorrect for ASP.NET Web Forms. It tells you to use the following code: EventClickHandling="JavaScript" EventClickJavaScript="editEvent(e.id);" But this doesn't w...
	
	
	
	Overlapping events mode
		
		Answered: You can find the overlapping event arrangement options here: https://doc.daypilot.org/calendar/event-arrangement-mode/
	
	
	
	Is there any way to capture when the current date changes
		
		Answered: In the ASP.NET version, you can subscribe to "onscroll" event on the main scrolling area. This element is accessible as "dp.nav.scroll" on the client side (where "dp" is the value of ClientObjectName...
	
	
	
	Apply style sheet in sheduler
		
		Answered: The Scheduler marks the important elements with custom CSS classes (the names are derived from the theme names). You can find the list here: https://kb.daypilot.org/62119/list-of-css-classes-used-in-...
	
	
	
	[Issue] DayPilot Month fires error "NotFoundError: Node was not found"
		
		Answered: Hi all, after a hour, I anwsered by myself. Here is my solution: dpm.onTimeRangeSelected = function (args) { dpm.clearSelection(); args.preventDefault(); }
	
	
	
	Daypilot Scheduler Event List has an event having id : "undefined"
		
		Answered: The JavaScript Scheduler doesn't modify the "id" property of the event data object - I recommend checking your data source. Note that this is a very old DayPilot version which is not supported anymor...
	
	
	
	Resource Bubble no longer working
		
		Answered: I confirm the bug. It's already fixed in the latest sandbox build (8.4.3627): https://aspnet.daypilot.org/sandbox/ There will be a new release available shortly. Let me know if the problem persists.
	
	
	
	getting selected events
		
		Answered: This seems to work fine for me: 
var dp = new DayPilot.Scheduler("dp");
// ...
dp.onEventMove = function (args) { 
  var selectedEvents = dp.multiselect.events(); 
};
dp.init();
 If it still d...
	
	
	
	Custom Tag - how to?
		
		Answered: Your second example seems to work fine for me (in both AngularJS and plain JavaScript version). Just a couple of comments: 1. As you have noticed already, dataTagFields is not used in the JavaScript ...
	
	
	
	Restrict the event to one week
		
		Answered: You can customize the drag and drop operations using the real-time events: https://api.daypilot.org/daypilot-scheduler-oneventmoving/ https://api.daypilot.org/daypilot-scheduler-oneventresizing/ http...