Fullcalendar V5 First Day In Daygridmonth Not Working
I want set current date visible first. But it isn't working. Documentation https://fullcalendar.io/docs/view-object var calendarAll = new FullCalendar.Calendar(calendarEl, {
Solution 1:
The "month" view provided by fullCalendar does not have this flexibility - it always starts at the beginning of the month, like a traditional paper calendar. IMHO it would be confusing to many users if it appeared differently.
Other types of view are more flexible - they will respond to the visibleRange
setting if you do not specify the time range in the view name, such as if you specify timeGrid
rather than timeGridWeek
for example.
Post a Comment for "Fullcalendar V5 First Day In Daygridmonth Not Working"