1
0
-1

Hello guys,

Do you have any idea for set week view as the default view mode for calendar menu?

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Hi, I do not see an option to configure the default view. But perhaps you could try to use some custom JavaScript to simulate a click on the Week button on page load. For example 

      $(function() {
        $("button.fc-agendaWeek-button").click();
      });
      1. Michael Meng

        Hi Anders,

        Thank you for your answer. It works.

      CommentAdd your comment...