Issue 1463: allDay event display order is not deterministic
Status:  Done
Owner: ----
Closed:  Aug 2013
Reported by Robb.She...@gmail.com, Jul 11, 2012
The order in which all-day events are displayed in month view is not necessarily how they're added via the events attribute in Javascript.

So, for example, these events:


					{
						title : 'Info Sessions',
						start : '2012-07-23',
						allDay : true,
						className : 'event-kind-0'
					},
					{
						title : 'Interviews',
						start : '2012-07-23',
						allDay : true,
						className : 'event-kind-2'
					},
					{
						title : 'Tours',
						start : '2012-07-23',
						allDay : true,
						className : 'event-kind-4'
					},
					{
						title : 'Info Sessions',
						start : '2012-07-24',
						allDay : true,
						className : 'event-kind-0'
					},
					{
						title : 'Interviews',
						start : '2012-07-24',
						allDay : true,
						className : 'event-kind-2'
					},
					{
						title : 'Tours',
						start : '2012-07-24',
						allDay : true,
						className : 'event-kind-4'
					},

...create this output:

  http://i.imgur.com/JVYD7.png

It looks like this change in ordering is "random". But this is bad for us, because as you can see, it implies some kind of ordering in the UI (because the display on the 23rd and 24th are different), where there actually isn't one. 

Thank you.
Mar 12, 2013
#1 hoony...@gmail.com
i had same problem. T.T
Aug 18, 2013
Project Member #2 adamrs...@gmail.com
this should no longer be an issue in 1.6.3
Status: Done