| Issue 1463: | allDay event display order is not deterministic | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Aug 18, 2013
this should no longer be an issue in 1.6.3
Status:
Done
|
|
| ► Sign in to add a comment |