Back to Fullcalendar

Calendar::changeView

_docs-v5/view-api/Calendar-changeView.md

latest707 B
Original Source

Immediately switches to a different view.

<div class='spec' markdown='1'> calendar.changeView( viewName, *dateOrRange* ) </div>

viewName must be the name of one of the available views (a string).

js
calendar.changeView('timeGridDay');

If you'd like to navigate to a new date while simultaneously switching to a new view, you can specify a date parameter:

js
calendar.changeView('timeGridDay', '2017-06-01');

If you are using Custom View, you can change the visibleRange in the same way:

js
calendar.changeView('timeGrid', {
  start: '2017-06-01',
  end: '2017-06-05'
});

This date/visibleRange parameter was added in version 3.3.0.