Reputation: 594
https://fullcalendar.io/docs/display/weekends/
I am very new to this library. I want to NOT display the weekends, but I have a big problem. my weekend is friday/saturdy.
how can I fix the default weekend days?
Upvotes: 0
Views: 75
Reputation: 62536
Instead of weekends: false
you can use the hiddenDays
option:
hiddenDays: [5, 6]
Upvotes: 1