Eventcalendar V5 - How can I sort correctly?
It would be better if you could turn this off completely and the sorting comes from the database.
This was possible in V4
data {
title: “Platz 1”,
title: “Platz 2”,
title: “Platz 3”,
title: “Platz 10”,
title: “Platz 11”,
…}
– Output —
Platz 1
Platz 10
Platz 11
Platz 2
Platz 3
– Correct –
Platz 1
Platz 2
Platz 3
Platz 10
Platz 11
Platz = Range , or whatever
eventOrder does not work:
eventOrder: function (event1) {
return event1.title? -1 : 1;
},