Change the height of fullcalendar display?
How do I change the开发者_运维知识库 height of the main fullcalendar and have everything else fit that calendar?
You can set it at the initialization of the calendar or modify it dynamically using the setter.
From the documentation
$('#calendar').fullCalendar({
height: 650
});
Or using the setter:
$('#calendar').fullCalendar('option', 'height', 700);
精彩评论