Hello,
I have a problem with the order of the items in the header.
the same code generate this in each version.
v6.0.5
v7.1.0
code
this.scheduler.config.header = [
{
html: "Nouvel évènement",
click: () => {
this.scheduler.showLightbox("new");
},
},
'date',
{
html: "+", click: () => { this.zoomIn(); },
},
{
html: "-", click: () => { this.zoomOut(); },
},
'prev',
'today',
'next',
{
html: "<i class='fa-regular fa-file-pdf ribbonicon'></i> PDF",
click: () => {
this.scheduler.exportToPDF({
name: "myscheduler.pdf",
format: "A1",
orientation: "landscape"
});
},
},
{
html: "<i class='fa-solid fa-up-right-and-down-left-from-center fa-xl'></i> BASCULER AFFICHAGE",
click: () => { this.changeFullScreen() },
},
];
How can I order my header elements ?
Thanks