开发者

Change the height of fullcalendar display?

开发者 https://www.devze.com 2023-01-25 11:48 出处:网络
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

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);
0

精彩评论

暂无评论...
验证码 换一张
取 消