Our powerful JS Calendar component


Post by jesenko »

Hi,

After upgrading from 5.1.1 to 5.2.1, the day view displays additional dates in the header row.

Edit: As I can see in the change log, this was introduced in 5.2.0.
https://www.bryntum.com/docs/calendar/guide/Calendar/changelog

Is it possible to configure the day view to show only single (current) date in the center of the day view header to look the same way as it was before 5.2.0?

Thanks


Post by alex.l »

Hi jesenko,

Thanks for your question, seems it's not configurable now. I've opened a feature request to add the config https://github.com/bryntum/support/issues/5580

All the best,
Alex


Post by jesenko »

Hi Alex,

thanks for the fast feedback.

Cheers


Post by alex.l »

Hi jesenko,

I've found a config to manage that you need:

const calendar = new Calendar({
    // ...

modes: {
    day : {
        allDayEvents : {
            fullWeek : false
        }
    }
}

All the best,
Alex


Post by jesenko »

That is beautiful, thank you :)


Post Reply