fullcalendar not visible until button is clicked or window resized?

后端 未结 7 1772
醉梦人生
醉梦人生 2020-12-19 07:35

I\'m using jquery full calendar with angularJS and angularstrap. The problem it seems is that the calendar will only display when I either click on one of the buttons in the

7条回答
  •  天命终不由人
    2020-12-19 07:54

    You need to specify the height of the full calendar e.g.

    document.addEventListener('DOMContentLoaded', function() {
      var calendarEl = document.getElementById('calendar');
      var calendar = new FullCalendar.Calendar(calendarEl, {
        plugins: [ 'dayGrid' ],
        height: "parent"
      });
      calendar.render();
    });
    

提交回复
热议问题